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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b3a8b;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #8b3a8b;
}

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 12px;
    border-radius: 4px;
    background-color: #ecf0f1;
}

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

.hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44,62,80,0.95), rgba(44,62,80,0.7));
    padding: 60px 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
}

.intro-cards {
    padding: 80px 0;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8b3a8b;
}

.info-card p {
    font-size: 1.05rem;
    color: #546e7a;
}

.info-card.highlight {
    background: linear-gradient(135deg, #8b3a8b 0%, #b14ab1 100%);
    color: #ffffff;
}

.info-card.highlight h3 {
    color: #ffffff;
}

.info-card.highlight p {
    color: #f0e6f0;
}

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 320px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.approach-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #ecf0f1;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #8b3a8b;
}

.card-content p {
    color: #546e7a;
    font-size: 1rem;
}

.services-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.centered-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b3a8b;
    margin-bottom: 20px;
}

.select-service {
    background-color: #8b3a8b;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.select-service:hover {
    background-color: #6d2d6d;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #8b3a8b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #8b3a8b;
    font-style: normal;
}

.enrollment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b3a8b 0%, #b14ab1 100%);
}

.enrollment-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.enrollment-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.enrollment-card > p {
    text-align: center;
    color: #546e7a;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input {
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #8b3a8b;
}

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

.submit-btn {
    background-color: #8b3a8b;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 700;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #6d2d6d;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border: 2px solid #bdc3c7;
}

.disclaimer-card p {
    font-size: 0.95rem;
    color: #546e7a;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px 0;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.email-display {
    color: #8b3a8b;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept, .btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #8b3a8b;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5f6c6d;
}

.page-hero {
    background: linear-gradient(135deg, #8b3a8b 0%, #b14ab1 100%);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.story-section {
    padding: 80px 0;
}

.story-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.story-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.story-card.full-width {
    flex-basis: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.story-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.story-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.story-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #8b3a8b;
}

.story-card p {
    color: #546e7a;
    font-size: 1.05rem;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.value-card {
    flex: 1;
    min-width: 240px;
    background: linear-gradient(135deg, #8b3a8b 0%, #b14ab1 100%);
    padding: 35px;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 1rem;
    opacity: 0.95;
}

.all-services {
    padding: 80px 0;
}

.services-grid-detailed {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-detail-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-detail-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background-color: #ecf0f1;
}

.service-content {
    padding: 35px;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #8b3a8b;
    margin-bottom: 20px;
}

.service-content p {
    color: #546e7a;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-content h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content ul {
    list-style-position: inside;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-content ul li {
    margin-bottom: 8px;
}

.duration {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.enrollment-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.cta-card-centered {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-align: center;
}

.cta-card-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-card-centered p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #8b3a8b;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6d2d6d;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #8b3a8b;
}

.contact-card p {
    color: #546e7a;
    margin-bottom: 15px;
}

.contact-detail {
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.8;
}

.contact-card.highlight {
    background: linear-gradient(135deg, #8b3a8b 0%, #b14ab1 100%);
    color: #ffffff;
}

.contact-card.highlight h2 {
    color: #ffffff;
}

.contact-card.highlight p {
    color: #f0e6f0;
}

.inline-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.inline-link:hover {
    color: #f0e6f0;
}

.location-info {
    padding: 80px 0;
    background-color: #ffffff;
}

.location-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.location-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-card h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #8b3a8b;
}

.location-card p {
    color: #546e7a;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.location-card ul {
    list-style-position: inside;
    color: #546e7a;
    margin-bottom: 15px;
}

.location-card ul li {
    margin-bottom: 8px;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-align: center;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #8b3a8b;
}

.thanks-message {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #f0e6f0;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #8b3a8b;
    font-weight: 600;
}

.thanks-card p {
    color: #546e7a;
    margin-bottom: 40px;
}

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

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #8b3a8b;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

.next-steps {
    padding: 80px 0;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b3a8b 0%, #b14ab1 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    color: #546e7a;
    font-size: 1.05rem;
}

.legal-content {
    padding: 80px 0;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-card h2 {
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-card h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #8b3a8b;
}

.legal-card p {
    color: #546e7a;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.legal-card ul li {
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .approach-card {
        min-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}
