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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a772;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.ad-notice {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.813rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6d5a42;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.programs-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.program-card {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.program-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 1.75rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.select-service.selected {
    background-color: var(--accent-color);
}

.form-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-info p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.selected-service-display {
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    margin-top: 20px;
}

.selected-service-display p {
    margin: 0;
}

.selected-service-display strong {
    color: var(--primary-color);
}

.form-container {
    flex: 1;
}

.booking-form {
    background-color: var(--bg-light);
    padding: 40px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    background-color: var(--bg-white);
    color: var(--text-dark);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1.063rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover:not(:disabled) {
    background-color: #6d5a42;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.approach-split {
    display: flex;
    align-items: center;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.approach-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.approach-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.938rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-col a {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.938rem;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.75;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.813rem;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.938rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 0.938rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    padding: 100px 60px 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-split {
    display: flex;
    align-items: stretch;
}

.about-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.about-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-content p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.expertise-split {
    display: flex;
    align-items: center;
}

.expertise-split.reverse {
    flex-direction: row-reverse;
}

.expertise-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.expertise-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.expertise-content p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.expertise-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.timeline-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.timeline-section h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 120px;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.services-intro-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.services-intro-content {
    flex: 1;
    padding-right: 60px;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.services-intro-content p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-intro-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.detailed-services {
    padding: 0 60px 80px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 60px;
    border: 1px solid var(--border-color);
}

.service-detail-card.reverse .service-detail-split {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

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

.service-detail-info h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 2.25rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.service-detail-info p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #6d5a42;
}

.service-detail-visual {
    flex: 1;
    max-width: 450px;
}

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

.enrollment-info {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.enrollment-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.info-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-white);
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.contact-split {
    display: flex;
    gap: 80px;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info-block > p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-email {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-note {
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    margin-top: 40px;
}

.contact-note p {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-visual-block {
    flex: 1;
}

.contact-visual-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-bottom: 25px;
}

.location-info {
    padding: 30px;
    background-color: var(--bg-light);
}

.location-info h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.faq-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    padding: 30px;
    background-color: var(--bg-white);
}

.faq-item h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.thanks-section {
    padding: 100px 60px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    padding: 30px;
    background-color: var(--bg-light);
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 40px;
    text-align: left;
}

.step {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #6d5a42;
}

.btn-secondary {
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.legal-page h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .about-split,
    .expertise-split,
    .services-intro-split,
    .form-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .expertise-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .approach-content,
    .about-content,
    .expertise-content,
    .services-intro-content,
    .form-info,
    .form-container {
        padding: 60px 40px;
    }

    .hero-visual,
    .intro-visual,
    .approach-visual,
    .about-visual,
    .expertise-visual,
    .services-intro-visual {
        min-height: 400px;
    }

    .programs-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .program-card,
    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .steps-grid,
    .info-split {
        flex-direction: column;
    }

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

    .service-detail-visual {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

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

    .hero-content p {
        font-size: 1.063rem;
    }

    .programs-section,
    .values-section,
    .timeline-section,
    .enrollment-info,
    .faq-section {
        padding: 60px 30px;
    }

    .section-header-centered h2,
    .values-section h2,
    .timeline-section h2,
    .enrollment-info h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}