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

:root {
    --primary-color: #2d3561;
    --secondary-color: #4a5f8c;
    --accent-color: #6b7fb8;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6b6b6b;
    --bg-light: #f9fafb;
    --bg-lighter: #ffffff;
    --border-color: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-lighter);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: white;
    color: var(--primary-color);
}

.btn-accept:hover {
    background: var(--bg-light);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: var(--bg-lighter);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    color: var(--text-light);
    position: relative;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 5%;
    gap: 4rem;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    padding-left: 3rem;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content-left p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-visual-right {
    flex: 1;
    max-width: 550px;
    margin-top: -4rem;
}

.intro-asymmetric {
    display: flex;
    gap: 6rem;
    padding: 6rem 8% 4rem 12%;
    background: var(--bg-light);
}

.intro-text-block {
    flex: 1.5;
}

.intro-text-block h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.intro-stat-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.problem-narrative {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    align-items: center;
}

.narrative-left {
    flex: 1;
    margin-left: 8%;
}

.narrative-right {
    flex: 1.2;
    padding-right: 5%;
}

.narrative-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.narrative-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background: var(--primary-color);
}

.services-offset {
    padding: 6rem 5% 8rem;
    background: var(--bg-lighter);
}

.services-header-block {
    max-width: 700px;
    margin: 0 0 4rem 8%;
}

.services-header-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.services-header-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.service-card.offset-1 {
    flex: 1 1 calc(45% - 1.25rem);
    margin-left: 0;
}

.service-card.offset-2 {
    flex: 1 1 calc(50% - 1.25rem);
    margin-left: auto;
    margin-top: 3rem;
}

.service-card.offset-3 {
    flex: 1 1 calc(48% - 1.25rem);
    margin-right: auto;
}

.service-card.offset-4 {
    flex: 1 1 calc(52% - 1.25rem);
    margin-left: auto;
    margin-top: -2rem;
}

.service-card.offset-5 {
    flex: 1 1 calc(50% - 1.25rem);
    margin-top: 2rem;
}

.service-card.offset-6 {
    flex: 1 1 calc(46% - 1.25rem);
    margin-left: auto;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    display: block;
}

.select-service {
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--secondary-color);
}

.trust-layer {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.trust-content h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-align: center;
}

.trust-reasons {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.reason-block {
    flex: 1;
    min-width: 280px;
}

.reason-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.reason-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-offset {
    display: flex;
    gap: 4rem;
    padding: 6rem 8% 6rem 5%;
    align-items: center;
}

.testimonial-content {
    flex: 1.3;
    padding: 3rem;
    background: white;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: normal;
}

.testimonial-visual {
    flex: 1;
}

.approach-narrative {
    padding: 6rem 5% 6rem 12%;
    background: var(--bg-lighter);
}

.approach-narrative h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.4;
    min-width: 80px;
}

.step-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.step-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.value-prop-alternate {
    display: flex;
    gap: 5rem;
    padding: 6rem 8% 6rem 5%;
    background: var(--bg-light);
    align-items: center;
}

.value-left {
    flex: 1.2;
}

.value-left h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.value-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.value-right {
    flex: 1;
    margin-top: -3rem;
}

.form-offset {
    padding: 7rem 5% 8rem;
    background: var(--bg-lighter);
}

.form-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.asymmetric-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.final-cta-sticky {
    position: sticky;
    bottom: 0;
    background: var(--primary-color);
    padding: 1.2rem 5%;
    z-index: 90;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-content span {
    color: white;
    font-size: 1.1rem;
}

.btn-sticky-cta {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-sticky-cta:hover {
    background: var(--bg-light);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #808080;
    font-size: 0.9rem;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 6rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-hero-content p,
.services-hero-content p,
.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    gap: 4rem;
    padding: 6rem 8% 6rem 5%;
    align-items: center;
}

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.story-visual {
    flex: 1;
    margin-top: -2rem;
}

.about-principles {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.about-principles h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-item {
    flex: 1;
    min-width: 280px;
}

.principle-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.principle-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-approach {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    align-items: center;
}

.approach-content {
    flex: 1.2;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.approach-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.approach-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.about-difference {
    padding: 6rem 8% 6rem 5%;
    background: var(--bg-light);
}

.about-difference h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.difference-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
}

.diff-block {
    padding: 2rem;
    background: white;
    border-left: 3px solid var(--secondary-color);
}

.diff-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.diff-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-cta {
    padding: 6rem 5%;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.services-intro {
    padding: 4rem 8% 2rem;
}

.intro-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
}

.services-detailed {
    padding: 4rem 5% 6rem;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    padding: 4rem 0;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-content > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.service-benefits li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--text-light);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing-block {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-visual {
    flex: 1;
}

.services-cta {
    padding: 4rem 5% 6rem;
    background: var(--bg-light);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: white;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    gap: 3rem;
    padding: 4rem 8%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 250px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-approach {
    padding: 4rem 8% 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.thanks-link {
    padding: 0.8rem 1.8rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background: var(--primary-color);
    color: white;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--secondary-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5% 6rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.6rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-visual-right {
        margin-top: 0;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 5%;
    }

    .problem-narrative,
    .testimonial-offset,
    .value-prop-alternate,
    .about-story,
    .about-approach {
        flex-direction: column;
    }

    .narrative-left,
    .narrative-right {
        margin-left: 0;
        padding-right: 0;
    }

    .service-card {
        flex: 1 1 100% !important;
        margin: 0 !important;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .trust-reasons {
        flex-direction: column;
    }

    .approach-narrative {
        padding: 4rem 5%;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content-left h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .nav-asymmetric {
        padding: 1rem 5%;
    }

    .nav-brand a {
        font-size: 1.2rem;
    }

    .nav-links {
        font-size: 0.9rem;
    }

    .asymmetric-form {
        padding: 2rem 1.5rem;
    }

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