* {
    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: #2c3e50;
    background-color: #fafafa;
}

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    position: relative;
    margin-left: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover,
.nav-links a.nav-active {
    color: #2d5016;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    margin-bottom: 100px;
}

.hero-text-offset {
    width: 45%;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 36px;
}

.hero-visual-block {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f3a10;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #6d8a54;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #5a7345;
}

.intro-block {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 100px 80px 140px;
    margin-bottom: 80px;
}

.intro-content-left {
    flex: 1;
}

.intro-content-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-content-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.intro-image-right {
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

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

.offset-text-section {
    padding: 60px 80px;
    margin-bottom: 80px;
    background-color: #f7f9f5;
}

.offset-text-inner {
    max-width: 700px;
    margin-left: 180px;
}

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

.offset-text-inner p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.link-inline {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2d5016;
    transition: opacity 0.3s ease;
}

.link-inline:hover {
    opacity: 0.7;
}

.programs-grid {
    padding: 100px 80px;
    background-color: #ffffff;
}

.programs-header-offset {
    margin-left: 120px;
    margin-bottom: 60px;
}

.programs-header-offset h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.programs-header-offset p {
    font-size: 18px;
    color: #666;
}

.program-cards-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-card {
    display: flex;
    gap: 40px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:nth-child(odd) {
    margin-left: 100px;
}

.program-card:nth-child(even) {
    margin-right: 100px;
}

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

.card-img-container {
    width: 350px;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    margin-top: auto;
    margin-bottom: 16px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.trust-block-offset {
    padding: 80px 100px 80px 200px;
    background-color: #f7f9f5;
    margin: 80px 0;
}

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

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
    max-width: 800px;
}

.form-section {
    padding: 100px 80px;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 150px;
}

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

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 16px 36px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1f3a10;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 80px 30px 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 60px;
}

.footer-brand-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.footer-links-block,
.footer-legal-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-block a,
.footer-legal-block a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-block a:hover,
.footer-legal-block a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #ddd;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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 {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

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

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

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

.btn-cookie-accept {
    background-color: #2d5016;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    opacity: 0.8;
}

.page-header-asymmetric {
    padding: 120px 80px 80px 150px;
    background-color: #f7f9f5;
    margin-bottom: 60px;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-header-content p {
    font-size: 19px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
}

.about-story-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 80px 80px 80px;
    margin-bottom: 60px;
}

.story-visual {
    width: 450px;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-text {
    flex: 1;
}

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

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

.values-offset-section {
    padding: 80px 100px 80px 180px;
    background-color: #ffffff;
    margin-bottom: 60px;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 12px;
}

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

.team-section-asymmetric {
    margin-bottom: 80px;
}

.team-intro-offset {
    padding: 0 80px 40px 140px;
}

.team-intro-offset h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.team-intro-offset p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
}

.team-visual-block {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.team-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-section {
    padding: 80px 100px 80px 200px;
    background-color: #f7f9f5;
    margin-bottom: 80px;
}

.approach-text-offset h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.approach-text-offset p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
    max-width: 800px;
}

.cta-section-offset {
    padding: 60px 80px;
    margin-bottom: 60px;
}

.cta-box {
    background-color: #2d5016;
    padding: 60px 80px;
    border-radius: 8px;
    margin-left: 120px;
    max-width: 700px;
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 17px;
    line-height: 1.6;
    color: #e8f1dc;
    margin-bottom: 28px;
}

.services-detail-section {
    padding: 60px 80px;
}

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

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

.service-detail-card:nth-child(odd) {
    margin-left: 60px;
}

.service-detail-card:nth-child(even) {
    margin-right: 60px;
}

.service-card-visual {
    width: 450px;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.service-card-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card-info {
    flex: 1;
}

.service-card-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-card-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-card-info ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-card-info ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
    margin-top: 20px;
}

.service-duration {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.services-cta-section {
    padding: 80px 100px;
    background-color: #f7f9f5;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 60px 80px 80px 80px;
}

.contact-info-asymmetric {
    display: flex;
    gap: 80px;
}

.contact-block {
    flex: 1;
}

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

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-details-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-visual-section {
    margin-bottom: 80px;
}

.contact-visual-block {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional-info {
    padding: 80px 100px 80px 180px;
    background-color: #f7f9f5;
}

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

.info-offset-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
    max-width: 800px;
}

.thanks-section {
    padding: 120px 80px;
    min-height: 60vh;
}

.thanks-content-offset {
    max-width: 700px;
    margin-left: 150px;
}

.thanks-content-offset h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thanks-content-offset p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-info {
    background-color: #f7f9f5;
    padding: 20px 30px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-info p {
    font-size: 16px;
    color: #2d5016;
    font-weight: 600;
}

.legal-page-section {
    padding: 60px 80px 100px 80px;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d5016;
    margin-top: 30px;
    margin-bottom: 14px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.legal-content a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .nav-asymmetric {
        margin-left: 20px;
        padding: 20px 30px;
    }

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

    .hero-text-offset,
    .hero-visual-block {
        width: 100%;
    }

    .intro-block {
        flex-direction: column;
        padding: 60px 40px;
    }

    .intro-image-right {
        width: 100%;
    }

    .program-card {
        flex-direction: column;
    }

    .program-card:nth-child(odd),
    .program-card:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .card-img-container {
        width: 100%;
        height: 250px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .service-card-visual {
        width: 100%;
    }

    .about-story-section {
        flex-direction: column;
    }

    .story-visual {
        width: 100%;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .programs-header-offset,
    .form-container-asymmetric,
    .thanks-content-offset {
        margin-left: 0;
    }

    .offset-text-inner {
        margin-left: 0;
    }

    .trust-block-offset,
    .approach-section,
    .values-offset-section {
        padding-left: 40px;
    }
}