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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 4px;
    font-weight: 500;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #7f8c8d;
    color: #fff;
}

.btn-reject:hover {
    background: #6c7a7b;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.8rem;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #34495e;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 120px 1.5rem 3rem;
    position: relative;
}

.hero-offset-block {
    width: 100%;
    margin-bottom: 2rem;
}

.hero-image-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image-wrap img {
    width: 100%;
    object-fit: cover;
    height: 350px;
}

.hero-text-offset {
    padding: 2rem 0;
}

.hero-text-offset h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-offset p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-hero {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
}

.cta-hero:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.intro-irregular {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: #f8f9fa;
}

.intro-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.intro-right-visual {
    display: flex;
    justify-content: flex-end;
}

.visual-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.visual-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.visual-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.services-overlap {
    padding: 5rem 1.5rem;
}

.services-title-block {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-title-block p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card.offset-1 {
    margin-left: 0;
}

.service-card.offset-2 {
    margin-left: 0;
}

.service-card.offset-3 {
    margin-left: 0;
}

.service-card.offset-4 {
    margin-left: 0;
}

.service-card.offset-5 {
    margin-left: 0;
}

.service-card.offset-6 {
    margin-left: 0;
}

.service-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.select-service {
    background: #3498db;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
}

.select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.philosophy-block {
    padding: 5rem 1.5rem;
    background: #ecf0f1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-offset-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.philosophy-offset-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.philosophy-visual-stack img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonials-creative {
    padding: 5rem 1.5rem;
    background: #fff;
}

.testimonials-creative h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-item cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-section-irregular {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-wrapper-offset {
    color: #fff;
}

.form-wrapper-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-wrapper-offset p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
}

.btn-submit {
    background: #27ae60;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.form-visual-aside img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-sticky-trigger {
    padding: 3rem 1.5rem;
    background: #2c3e50;
    text-align: center;
}

.cta-inline-large {
    display: inline-block;
    background: #fff;
    color: #2c3e50;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-inline-large:hover {
    background: #ecf0f1;
    transform: scale(1.05);
}

.disclaimer-section {
    padding: 3rem 1.5rem;
    background: #f8f9fa;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-block-1 h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.footer-block-1 p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-block-2 h4,
.footer-block-3 h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-block-2 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-block-2 a {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-block-2 a:hover {
    color: #3498db;
}

.footer-block-3 p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.85rem;
}

.about-hero {
    padding: 140px 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mission-offset {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mission-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mission-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.values-irregular {
    padding: 5rem 1.5rem;
}

.values-irregular h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 4rem 1.5rem;
    background: #ecf0f1;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.team-image-wrap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.process-asymmetric {
    padding: 5rem 1.5rem;
}

.process-asymmetric h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-item p {
    color: #666;
    line-height: 1.7;
}

.cta-about {
    padding: 4rem 1.5rem;
    background: #3498db;
    color: #fff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background: #fff;
    color: #3498db;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
}

.btn-cta:hover {
    background: #ecf0f1;
    transform: scale(1.05);
}

.services-hero-offset {
    padding: 140px 1.5rem 3rem;
}

.services-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-hero-text p {
    font-size: 1.15rem;
    color: #555;
}

.service-detail-section {
    padding: 3rem 1.5rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-detail-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.services-cta {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-cta-large:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.contact-hero {
    padding: 140px 1.5rem 3rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #555;
}

.contact-info-asymmetric {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block-offset-1,
.contact-block-offset-2,
.contact-block-offset-3 {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-block-offset-1 h2,
.contact-block-offset-2 h2,
.contact-block-offset-3 h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block-offset-1 p,
.contact-block-offset-2 p,
.contact-block-offset-3 p {
    color: #555;
    line-height: 1.8;
}

.contact-map-section {
    padding: 3rem 1.5rem;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-outro {
    padding: 3rem 1.5rem;
    background: #ecf0f1;
    text-align: center;
}

.contact-outro h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-outro p {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-hero {
    padding: 140px 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: #2c3e50;
}

.btn-back-home {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-back-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.legal-page {
    padding: 140px 1.5rem 5rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

@media (min-width: 768px) {
    .nav-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ad-disclosure {
        order: 3;
        margin-left: auto;
    }

    .nav-links {
        order: 2;
    }

    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .hero-offset-block {
        width: 55%;
        margin-bottom: 0;
    }

    .hero-image-wrap img {
        height: 500px;
    }

    .hero-text-offset {
        width: 45%;
    }

    .hero-text-offset h1 {
        font-size: 3.5rem;
    }

    .intro-irregular {
        flex-direction: row;
        align-items: center;
    }

    .intro-left {
        width: 50%;
    }

    .intro-right-visual {
        width: 50%;
    }

    .services-grid-asymmetric {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .service-card.offset-1 {
        margin-left: 5%;
    }

    .service-card.offset-2 {
        margin-right: 5%;
    }

    .service-card.offset-3 {
        margin-left: 10%;
    }

    .service-card.offset-4 {
        margin-right: 10%;
    }

    .service-card.offset-5 {
        margin-left: 3%;
    }

    .service-card.offset-6 {
        margin-right: 3%;
    }

    .philosophy-block {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .philosophy-offset-text {
        width: 45%;
    }

    .philosophy-visual-stack {
        width: 55%;
    }

    .testimonials-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-item {
        width: calc(33.333% - 1.4rem);
    }

    .testimonial-item.position-1 {
        margin-top: 2rem;
    }

    .testimonial-item.position-3 {
        margin-top: 4rem;
    }

    .form-section-irregular {
        flex-direction: row;
        align-items: center;
    }

    .form-wrapper-offset {
        width: 60%;
    }

    .form-visual-aside {
        width: 40%;
    }

    .footer-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-block-1 {
        width: 100%;
    }

    .footer-block-2 {
        width: calc(50% - 1.5rem);
    }

    .footer-block-3 {
        width: calc(50% - 1.5rem);
    }

    .footer-bottom {
        width: 100%;
    }

    .about-hero {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .about-hero-content {
        width: 50%;
    }

    .about-hero-image {
        width: 50%;
    }

    .mission-offset {
        flex-direction: row;
        align-items: center;
    }

    .mission-visual {
        width: 45%;
    }

    .mission-text {
        width: 55%;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 1rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        width: calc(50% - 1.25rem);
    }

    .step-item.step-offset-1 {
        margin-left: 5%;
    }

    .step-item.step-offset-2 {
        margin-right: 5%;
    }

    .step-item.step-offset-3 {
        margin-left: 3%;
    }

    .step-item.step-offset-4 {
        margin-right: 3%;
    }

    .service-detail.offset-layout-1 {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .service-detail.offset-layout-1 .service-detail-visual {
        width: 45%;
    }

    .service-detail.offset-layout-1 .service-detail-content {
        width: 55%;
    }

    .service-detail.offset-layout-2 {
        flex-direction: row-reverse;
        align-items: center;
        gap: 3rem;
    }

    .service-detail.offset-layout-2 .service-detail-visual {
        width: 45%;
    }

    .service-detail.offset-layout-2 .service-detail-content {
        width: 55%;
    }

    .contact-info-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block-offset-1,
    .contact-block-offset-2,
    .contact-block-offset-3 {
        width: calc(33.333% - 2rem);
    }

    .contact-block-offset-1 {
        margin-left: 2%;
    }

    .contact-block-offset-3 {
        margin-right: 2%;
    }

    .thanks-hero {
        flex-direction: row;
        align-items: center;
    }

    .thanks-content {
        width: 55%;
        text-align: left;
    }

    .thanks-visual {
        width: 45%;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .services-grid-asymmetric {
        gap: 2.5rem;
    }

    .service-card {
        width: calc(33.333% - 1.7rem);
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        width: calc(25% - 1.5rem);
    }
}
