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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: #2d7a3e;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2d7a3e;
}

.hero-magazine {
    background-color: #ffffff;
    padding: 80px 40px;
}

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

.hero-text-column {
    flex: 1;
    padding-right: 40px;
}

.hero-text-column h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.lead-text {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

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

.cta-primary:hover {
    background-color: #245e31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

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

.cta-secondary:hover {
    background-color: #2d7a3e;
    color: #ffffff;
}

.intro-editorial {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-column h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.narrow-column p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-magazine {
    background-color: #ffffff;
    padding: 100px 40px;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.service-content {
    padding: 28px;
}

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

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
}

.select-service {
    padding: 12px 24px;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #245e31;
    transform: scale(1.05);
}

.approach-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.two-column-layout.reverse {
    flex-direction: row-reverse;
}

.column-text {
    flex: 1;
}

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

.column-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.column-image {
    flex: 1;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.testimonials-inline {
    background-color: #ffffff;
    padding: 100px 40px;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 36px;
    margin-bottom: 32px;
    border-left: 4px solid #2d7a3e;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

.form-section {
    background-color: #2d7a3e;
    padding: 100px 40px;
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

.form-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    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: #2d7a3e;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #245e31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.4);
}

.ingredients-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.ingredients-section a {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
}

.ingredients-section a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

.footer-column ul li a:hover {
    color: #2d7a3e;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 8px;
}

.references-list li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.references-list li a:hover {
    color: #2d7a3e;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #2a2a2a;
    border-radius: 4px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    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: #1a1a1a;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #e0e0e0;
    margin: 0;
}

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

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

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

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

.cookie-accept:hover {
    background-color: #245e31;
}

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

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

.page-hero-small {
    background: linear-gradient(135deg, #2d7a3e 0%, #245e31 100%);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.about-story {
    background-color: #ffffff;
    padding: 100px 40px;
}

.about-philosophy {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.values-section {
    background-color: #ffffff;
    padding: 100px 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.container-wide h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 36px;
    border-radius: 6px;
    border-left: 4px solid #2d7a3e;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.team-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.approach-details {
    background-color: #ffffff;
    padding: 100px 40px;
}

.commitment-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.services-intro {
    background-color: #ffffff;
    padding: 60px 40px 20px;
}

.detailed-services {
    background-color: #ffffff;
    padding: 60px 40px;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

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

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

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

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.registration-cta {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.center-text {
    text-align: center;
}

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

.contact-content {
    background-color: #ffffff;
    padding: 80px 40px;
}

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

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

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

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.contact-info-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.location-note {
    background-color: #ffffff;
    padding: 80px 40px;
}

.thanks-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content {
    text-align: left;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
}

.confirmation-details p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
}

.selected-course {
    font-size: 20px;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 0;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.important-info {
    background-color: #fff9e6;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #f0ad4e;
    margin: 32px 0;
}

.important-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.important-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.additional-info {
    background-color: #ffffff;
    padding: 80px 40px;
}

.legal-page {
    background-color: #ffffff;
    padding: 80px 40px;
}

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

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

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-container a {
    color: #2d7a3e;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-contact {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-top: 48px;
}

.legal-contact p {
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .hero-content-split,
    .two-column-layout,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .two-column-layout.reverse {
        flex-direction: column;
    }

    .hero-text-column {
        padding-right: 0;
    }

    .magazine-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-text-column h1 {
        font-size: 36px;
    }

    .section-header-centered h2,
    .container-wide h2 {
        font-size: 32px;
    }

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

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

    .value-card {
        flex: 1 1 100%;
    }

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

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

    .thanks-container {
        padding: 40px 24px;
    }
}