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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #E8A76B;
    --accent-color: #7FA99B;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 16px 24px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:hover {
    background-color: var(--bg-light);
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 600px;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F4F8 100%);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #D89555;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-section {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #F5FAFB;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #6B8E82;
    transform: translateY(-2px);
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-wrapper h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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: var(--primary-color);
}

.submit-button {
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #D89555;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.testimonials-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    margin-bottom: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 24px;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-block img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.content-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 16px;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 17px;
}

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

.values-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 80px 24px;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 24px;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 64px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-detail-content ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 24px;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.enrollment-cta {
    padding: 80px 24px;
    background-color: var(--bg-light);
    text-align: center;
}

.enrollment-cta h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.enrollment-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-content {
    padding: 80px 24px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 64px;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    margin-bottom: 16px;
}

.image-caption {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.visit-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 64px;
}

.visit-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.visit-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-section {
    padding: 80px 24px;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.8;
}

.next-steps {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.additional-info {
    margin-bottom: 48px;
}

.additional-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.additional-info p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-button:hover {
    background-color: #6B8E82;
    transform: translateY(-2px);
}

.contact-reminder {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-reminder p {
    color: var(--text-dark);
    font-size: 16px;
}

.legal-content {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--accent-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

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

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 24px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 32px;
    }

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

    .page-hero p {
        font-size: 18px;
    }

    .services-preview h2,
    .testimonials-section h2,
    .values-section h2 {
        font-size: 32px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }

    .next-steps {
        padding: 32px 24px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .card-grid,
    .service-cards,
    .testimonial-grid,
    .values-grid {
        gap: 24px;
    }

    .info-card,
    .service-card {
        min-width: 100%;
    }
}