* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 100;
}

.floating-nav {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.hero-visual {
    margin-top: 100px;
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 22px;
    color: #f1f5f9;
    max-width: 700px;
    font-weight: 400;
}

.story-section {
    padding: 120px 40px;
    background-color: #fafafa;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a4a4a;
    line-height: 1.8;
}

.inline-image-left {
    float: left;
    width: 48%;
    margin: 0 32px 24px 0;
    background-color: #e5e7eb;
}

.inline-image-left img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-block {
    padding: 100px 40px;
    background-color: #1e293b;
    color: #ffffff;
}

.insight-content {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-content h3 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.insight-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #60a5fa;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
}

.insight-card sup a {
    color: #93c5fd;
    text-decoration: none;
}

.trust-section {
    padding: 110px 40px;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.timeline-block {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px;
    background-color: #f8fafc;
    border-left: 4px solid #3b82f6;
}

.timeline-marker {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
    min-width: 120px;
}

.timeline-item p {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 80px 40px;
    background-color: #eff6ff;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.7;
    color: #334155;
    padding: 0;
    border: none;
}

.testimonial-content cite {
    display: block;
    margin-top: 24px;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    color: #64748b;
}

.benefits-reveal {
    padding: 120px 40px;
    background-color: #ffffff;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 70px;
    text-align: left;
    color: #1a1a1a;
}

.benefits-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-large {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fafafa;
}

.benefit-large img {
    width: 50%;
    height: auto;
    background-color: #e5e7eb;
}

.benefit-text {
    flex: 1;
    padding: 40px;
}

.benefit-text h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.benefit-small {
    padding: 36px 44px;
    background-color: #f1f5f9;
    border-left: 5px solid #0ea5e9;
}

.benefit-small h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.benefit-small p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.services-showcase {
    padding: 110px 40px;
    background-color: #f9fafb;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #111827;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #3b82f6;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 28px 16px;
    color: #111827;
}

.service-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0 28px 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.duration {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.select-service {
    margin: 0 28px 28px;
    padding: 14px 28px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1d4ed8;
}

.form-section {
    padding: 100px 40px;
    background-color: #1e293b;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.form-container > p {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #334155;
    border-radius: 6px;
    background-color: #0f172a;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

.submit-btn:hover {
    background-color: #2563eb;
}

.disclaimer-section {
    padding: 70px 40px;
    background-color: #fef3c7;
    border-top: 3px solid #fbbf24;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 70px 40px 30px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #60a5fa;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #334155;
}

.footer-references h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-references ol li a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #64748b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(10px);
    padding: 28px 40px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    border-top: 1px solid #334155;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.cookie-content p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background-color: #3b82f6;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2563eb;
}

.cookie-reject {
    background-color: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
}

.cookie-reject:hover {
    background-color: #1e293b;
    color: #cbd5e1;
}

.page-header {
    margin-top: 120px;
    padding: 80px 40px 60px;
    background-color: #1e293b;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #94a3b8;
}

.content-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 70px;
}

.content-block h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.image-block-right {
    float: right;
    width: 45%;
    margin: 0 0 28px 36px;
    background-color: #e5e7eb;
}

.image-block-right img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-block {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding: 60px 0;
    margin: 60px 0;
    background-color: #f8fafc;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.team-section {
    background-color: #fafafa;
    padding: 50px;
    border-radius: 8px;
    margin-top: 50px;
}

.team-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detailed-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detailed-card.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: #e5e7eb;
}

.service-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.service-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 28px;
    color: #1f2937;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding: 24px 0;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
}

.price-duration {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1d4ed8;
}

.services-note {
    padding: 80px 40px;
    background-color: #eff6ff;
}

.note-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.note-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.note-container p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

.secondary-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.contact-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111827;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.contact-detail p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
}

.contact-image-block {
    flex: 1;
    background-color: #e5e7eb;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-note {
    padding: 80px 40px;
    background-color: #f9fafb;
}

.note-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.note-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.note-wrapper p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #ffffff;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 48px;
}

.selected-service-display {
    background-color: #eff6ff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.selected-service-display h3 {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

.service-name {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 36px;
    text-align: center;
    color: #1f2937;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    background-color: #f9fafb;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    display: block;
    width: 44px;
    height: 44px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.step-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.primary-btn:hover {
    background-color: #1d4ed8;
}

.secondary-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: #eff6ff;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.legal-intro {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #374151;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 44px;
    }

    .insight-grid {
        flex-direction: column;
    }

    .benefit-large {
        flex-direction: column;
    }

    .benefit-large img {
        width: 100%;
    }

    .service-detailed-card,
    .service-detailed-card.reverse {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 14px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .inline-image-left {
        float: none;
        width: 100%;
        margin: 24px 0;
    }

    .image-block-right {
        float: none;
        width: 100%;
        margin: 24px 0;
    }

    .stats-block {
        flex-direction: column;
        gap: 28px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .steps-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }
}