* {
    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: #ffffff;
}

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    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: #1a1a1a;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fafafa;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 650px;
    margin-left: 8%;
    margin-top: -80px;
}

.hero-text-block {
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #0a0a0a;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.cta-hero {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.hero-visual-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 75%;
    z-index: 5;
    background-color: #e8e8e8;
}

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

.intro-offset {
    display: flex;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.intro-column-left {
    flex: 1;
    padding-right: 40px;
}

.intro-column-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0a0a0a;
}

.intro-column-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.intro-visual-right {
    flex: 1;
    background-color: #f0f0f0;
}

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

.insight-section {
    background-color: #f5f5f5;
    padding: 100px 40px;
    margin: 80px 0;
}

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

.insight-card {
    background-color: #ffffff;
    padding: 50px;
    border-left: 4px solid #1a1a1a;
}

.insight-card.floating {
    transform: translateX(60px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.story-flow {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.story-image-inline {
    flex: 1;
    margin-top: 40px;
    background-color: #e8e8e8;
}

.story-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.trust-layer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 80px 40px;
    margin: 120px 0;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

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

.trust-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.trust-item p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.5;
}

.testimonial-asymmetric {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.testimonial-offset {
    flex: 1.3;
    transform: translateY(-30px);
}

.testimonial-offset blockquote {
    background-color: #f8f8f8;
    padding: 50px;
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    border-left: 5px solid #1a1a1a;
}

.testimonial-offset cite {
    display: block;
    margin-top: 25px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.testimonial-visual {
    flex: 1;
    background-color: #e0e0e0;
}

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

.programs-reveal {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.programs-intro {
    text-align: center;
    margin-bottom: 80px;
}

.programs-intro h2 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 700;
}

.programs-intro p {
    font-size: 19px;
    color: #4a4a4a;
}

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

.program-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    width: calc(50% - 20px);
    min-width: 380px;
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-offset-1 {
    transform: translateX(-20px);
}

.card-offset-2 {
    transform: translateX(20px) translateY(30px);
}

.card-offset-3 {
    transform: translateX(-15px) translateY(-20px);
}

.card-offset-4 {
    transform: translateX(25px);
}

.card-offset-5 {
    transform: translateX(-10px) translateY(25px);
}

.program-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.program-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 25px;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.program-features span {
    font-size: 14px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.program-features span:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.program-price {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.cta-program {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-program:hover {
    background-color: #333333;
}

.form-section {
    background-color: #fafafa;
    padding: 100px 40px;
    margin: 120px 0;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transform: translateX(40px);
}

.form-intro-block {
    margin-bottom: 40px;
}

.form-intro-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    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: #1a1a1a;
}

.cta-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-submit:hover {
    background-color: #333333;
}

.final-insight {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.insight-final-container h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-final-container p {
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.main-footer {
    background-color: #0a0a0a;
    color: #cccccc;
    padding: 80px 40px 40px;
    margin-top: 120px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #444;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 25px 40px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #333333;
}

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: #3a3a3a;
}

.cookie-btn.reject:hover {
    background-color: #e0e0e0;
}

.cookie-link {
    color: #666;
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #1a1a1a;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 60px;
    text-align: center;
    background-color: #fafafa;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0a0a0a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.thanks-cta {
    display: inline-block;
    margin-top: 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.thanks-cta:hover {
    background-color: #333333;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.contact-page-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-intro {
    margin-bottom: 60px;
}

.contact-intro h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
}

.contact-details {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-detail-item {
    flex: 1;
    background-color: #fafafa;
    padding: 40px;
}

.contact-detail-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-detail-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.services-page-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-intro {
    margin-bottom: 70px;
    text-align: center;
}

.services-intro h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 40px;
    background-color: #fafafa;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
}

.service-content {
    flex: 1.5;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

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

.service-visual {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 300px;
}

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

.about-page-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-hero {
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #3a3a3a;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.about-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
        padding: 40px;
    }

    .hero-visual-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

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

    .program-card {
        width: 100%;
        transform: none !important;
    }

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

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .programs-intro h2 {
        font-size: 32px;
    }

    .form-container-asymmetric {
        transform: none;
        padding: 40px;
    }

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