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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    margin-top: 40px;
    padding: 0 5% 0 8%;
}

.hero-content-offset {
    width: 45%;
    padding: 120px 0 0 0;
    z-index: 10;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
    line-height: 1.5;
}

.hero-image-irregular {
    position: absolute;
    right: 0;
    top: 80px;
    width: 58%;
    height: 70vh;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #333;
    cursor: pointer;
}

.intro-offset {
    display: flex;
    padding: 140px 8% 100px 12%;
    gap: 80px;
    align-items: center;
}

.intro-block-left {
    width: 50%;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-block-left p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.intro-visual-right {
    width: 40%;
    background-color: #e8e8e8;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-statement {
    background-color: #f5f5f5;
    padding: 100px 8% 100px 25%;
}

.problem-card-offset {
    max-width: 700px;
    padding: 50px;
    background-color: #fff;
    border-left: 4px solid #1a1a1a;
}

.problem-card-offset h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.problem-card-offset p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.insight-section-asymmetric {
    display: flex;
    padding: 120px 5%;
    gap: 60px;
    position: relative;
}

.insight-visual-overlap {
    width: 48%;
    position: relative;
    top: -40px;
    background-color: #e8e8e8;
}

.insight-visual-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-content-right {
    width: 48%;
    padding: 80px 40px 40px 40px;
}

.insight-content-right h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

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

.services-preview-irregular {
    padding: 100px 8%;
    background-color: #fff;
}

.services-preview-irregular h2 {
    font-size: 42px;
    margin-bottom: 70px;
    text-align: left;
    padding-left: 5%;
    color: #1a1a1a;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    width: calc(50% - 20px);
    background-color: #f9f9f9;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card.card-1 {
    margin-top: 0;
}

.service-card.card-2 {
    margin-top: 60px;
}

.service-card.card-3 {
    margin-top: 30px;
}

.service-card.card-4 {
    margin-top: 80px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px 25px;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 25px;
    color: #1a1a1a;
}

.service-select {
    margin: 0 25px 30px 25px;
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}

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

.trust-building-offset {
    padding: 100px 10% 100px 20%;
    background-color: #f5f5f5;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 35px;
    background-color: #fff;
    border-left: 3px solid #1a1a1a;
    max-width: 750px;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #2a2a2a;
    line-height: 1.6;
}

.testimonial-block cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.form-section-irregular {
    padding: 120px 8% 120px 30%;
    background-color: #fff;
}

.form-container-offset {
    max-width: 600px;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container-offset > p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #4a4a4a;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 60px 10%;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #fff;
    padding: 70px 8%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-block-1 h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-block-1 p {
    font-size: 14px;
    color: #aaa;
}

.footer-block-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-block-2 a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-block-3 p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 25px 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #fff;
    color: #1a1a1a;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.about-hero-offset {
    display: flex;
    padding: 140px 8% 100px 8%;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.about-content-left {
    width: 55%;
}

.about-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-content-left p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-visual-right {
    width: 40%;
    background-color: #e8e8e8;
}

.about-visual-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mission-irregular {
    padding: 100px 15% 100px 8%;
    background-color: #f5f5f5;
}

.mission-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.values-offset {
    padding: 100px 8%;
}

.values-offset h2 {
    font-size: 42px;
    margin-bottom: 70px;
    padding-left: 10%;
    color: #1a1a1a;
}

.values-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.value-item {
    width: calc(50% - 25px);
    padding: 40px;
    background-color: #f9f9f9;
}

.value-item.item-1 {
    margin-top: 0;
}

.value-item.item-2 {
    margin-top: 60px;
}

.value-item.item-3 {
    margin-top: 30px;
}

.value-item.item-4 {
    margin-top: 80px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.team-section-offset {
    padding: 100px 8% 100px 25%;
    background-color: #fff;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 750px;
}

.services-header-offset {
    padding: 140px 8% 80px 8%;
    margin-top: 40px;
}

.services-header-offset h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 19px;
    color: #4a4a4a;
    max-width: 700px;
}

.services-detailed {
    padding: 60px 8% 100px 8%;
}

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

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

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

.service-detail-image {
    width: 45%;
    background-color: #e8e8e8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.5;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: #1a1a1a;
}

.service-detail-duration {
    font-size: 14px;
    color: #666;
}

.cta-section-services {
    padding: 80px 8%;
    background-color: #f5f5f5;
    text-align: center;
}

.cta-section-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section-services p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.contact-header {
    padding: 140px 8% 60px 8%;
    margin-top: 40px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 18px;
    color: #4a4a4a;
}

.contact-info-offset {
    padding: 60px 8% 100px 20%;
}

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

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 8%;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    max-width: 600px;
}

.thanks-service {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0;
}

.legal-page {
    padding: 140px 8% 100px 8%;
    margin-top: 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        margin: 0;
        border-radius: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 20px;
    }

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

    .hero-image-irregular {
        position: relative;
        width: 100%;
        top: 0;
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .intro-block-left,
    .intro-visual-right {
        width: 100%;
    }

    .problem-statement {
        padding: 60px 5%;
    }

    .insight-section-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

    .insight-visual-overlap,
    .insight-content-right {
        width: 100%;
        top: 0;
    }

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

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .trust-building-offset {
        padding: 60px 5%;
    }

    .form-section-irregular {
        padding: 60px 5%;
    }

    .footer-asymmetric {
        flex-direction: column;
    }

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

    .about-hero-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .about-content-left,
    .about-visual-right {
        width: 100%;
    }

    .mission-irregular {
        padding: 60px 5%;
    }

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

    .value-item {
        width: 100%;
        margin-top: 0 !important;
    }

    .team-section-offset {
        padding: 60px 5%;
    }

    .service-detail-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .contact-info-offset {
        padding: 60px 5%;
    }
}