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

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

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

.navbar {
    background-color: #2c2c2c;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #f4a261;
}

.ad-disclosure {
    background-color: #f4a261;
    color: #2c2c2c;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #f4a261;
}

.hero-card {
    margin-top: 0;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    max-width: 700px;
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #f4a261;
    color: #2c2c2c;
    padding: 15px 35px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e76f51;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-card {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    padding: 50px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #264653;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #264653;
}

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

.price-tag {
    background-color: #f4a261;
    color: #2c2c2c;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
}

.center-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    background-color: #264653;
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2a9d8f;
    transform: translateY(-2px);
}

.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    width: 260px;
    border-left: 4px solid #f4a261;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #264653;
}

.benefit-card p {
    font-size: 15px;
    color: #555;
}

.form-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.form-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #264653;
}

.form-card p {
    margin-bottom: 30px;
    color: #666;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    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: #2a9d8f;
}

.btn-submit {
    background-color: #f4a261;
    color: #2c2c2c;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #e76f51;
    transform: translateY(-2px);
}

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #f4a261;
}

.disclaimer-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f4a261;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #264653;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept {
    background-color: #f4a261;
    color: #2c2c2c;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-header {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

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

.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.about-card-large {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    border-radius: 12px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #264653;
}

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

.philosophy-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.philosophy-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #264653;
}

.philosophy-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    padding: 35px;
    border-radius: 10px;
    width: 320px;
    color: #fff;
}

.team-card h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: #f4a261;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 15px;
    line-height: 1.7;
}

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

.values-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #264653;
}

.values-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-detail {
    padding: 60px 0;
    background-color: #fafafa;
}

.service-detail-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #264653;
}

.service-price {
    background-color: #f4a261;
    color: #2c2c2c;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #444;
}

.btn-enroll {
    background-color: #264653;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background-color: #2a9d8f;
    transform: translateY(-2px);
}

.contact-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.contact-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #264653;
}

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

.contact-item h4 {
    font-size: 18px;
    color: #264653;
    margin-bottom: 8px;
}

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

.email-display {
    color: #555;
    font-weight: 500;
}

.contact-map-card {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.map-overlay {
    background-color: rgba(38, 70, 83, 0.9);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
}

.directions-section {
    padding: 60px 0;
    background-color: #fff;
}

.directions-card {
    max-width: 900px;
    margin: 0 auto;
}

.directions-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #264653;
    text-align: center;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.direction-item h4 {
    font-size: 20px;
    color: #264653;
    margin-bottom: 10px;
}

.direction-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.faq-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.faq-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-card h4 {
    font-size: 18px;
    color: #264653;
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.thanks-card {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 80px;
    color: #2a9d8f;
    margin-bottom: 20px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #264653;
    margin-bottom: 15px;
}

.thanks-card > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-content {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-content h3 {
    font-size: 24px;
    color: #264653;
    margin-bottom: 15px;
}

.thanks-list {
    list-style: none;
    margin-bottom: 20px;
}

.thanks-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
}

.thanks-note {
    background-color: #f4f6f7;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    color: #264653;
    font-weight: 600;
}

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

.btn-primary {
    background-color: #f4a261;
    color: #2c2c2c;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e76f51;
    transform: translateY(-2px);
}

.legal-content {
    padding: 60px 0;
    background-color: #fafafa;
}

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

.legal-card h2 {
    font-size: 28px;
    color: #264653;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-card h3 {
    font-size: 22px;
    color: #2a9d8f;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-card h4 {
    font-size: 18px;
    color: #264653;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.legal-card ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-card strong {
    color: #264653;
}

.legal-card em {
    color: #777;
    font-size: 14px;
}

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

.gdpr-table th,
.cookie-table th {
    background-color: #264653;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    color: #555;
}

.gdpr-table tr:hover,
.cookie-table tr:hover {
    background-color: #f8f9fa;
}

.plain-text {
    color: #555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .section-heading {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

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

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

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

    .legal-card {
        padding: 30px 20px;
    }

    .gdpr-table,
    .cookie-table {
        font-size: 14px;
    }
}