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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #F4A460;
    --dark-color: #2C1810;
    --light-color: #FFF8DC;
    --gray-color: #666;
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: var(--gray-color);
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.hero-section {
    background-color: white;
    padding: 60px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.hero-text {
    flex: 1 1 400px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1 1 500px;
    background-color: #f5f5f5;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow);
}

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

.intro-cards {
    padding: 60px 0;
    background-color: #fafafa;
}

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

.info-card {
    flex: 1 1 300px;
    background-color: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.services-section {
    padding: 80px 0;
    background-color: white;
}

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

.section-header h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 14px;
}

.card-content p {
    color: #555;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.select-service {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: auto;
}

.select-service:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-card h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.form-card p {
    color: var(--gray-color);
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
}

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

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

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

.btn-accept:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #eee;
    color: #333;
}

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

.page-header {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
    background-color: white;
}

.story-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.story-image {
    flex: 1 1 450px;
    background-color: #f5f5f5;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    display: block;
}

.story-text {
    flex: 1 1 450px;
}

.story-text h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.story-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 14px);
    background-color: white;
    padding: 36px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.team-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-card {
    flex: 1 1 300px;
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.approach-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.approach-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.approach-item {
    flex: 1 1 calc(50% - 14px);
    background-color: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.cta-section {
    padding: 80px 0;
    background-color: white;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--light-color);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.cta-card p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

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

.course-details {
    margin: 24px 0;
}

.course-details h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.info-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.info-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-info {
    padding: 60px 0;
    background-color: white;
}

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

.contact-details {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-card {
    background-color: #f9f9f9;
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.contact-map {
    flex: 1 1 400px;
}

.map-placeholder {
    background-color: var(--light-color);
    padding: 48px;
    border-radius: var(--border-radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.faq-card {
    flex: 1 1 calc(50% - 12px);
    background-color: white;
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 60px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #22c55e;
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.thanks-card h1 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.next-steps {
    text-align: left;
    margin-bottom: 32px;
}

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

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.3s;
}

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

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

.btn-secondary {
    background-color: #eee;
    color: #333;
}

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

.legal-page {
    padding: 60px 0;
    background-color: white;
}

.legal-updated {
    text-align: center;
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin: 32px 0 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 24px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .section-header h2 {
        font-size: 32px;
    }

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

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

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

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