/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c74a4a;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

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

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

.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);
}

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

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

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

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

.nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--bg-white);
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 32px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

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

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

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-large {
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 18px;
    padding: 16px 40px;
}

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

/* Intro Section - Card Layout */
.intro-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 36px 28px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.card-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

/* Story Section */
.story-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--secondary-color);
    text-align: center;
}

.story-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.story-content p {
    margin-bottom: 24px;
}

.story-image {
    width: 100%;
    margin: 32px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

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

.problem-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--secondary-color);
}

.problem-list {
    margin-bottom: 32px;
}

.problem-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-color);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

.problem-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Method Section - Card Based */
.method-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.method-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

.method-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.method-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 32px 24px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.method-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

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

/* Courses Section - Card Grid */
.courses-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.courses-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

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

.course-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.course-header {
    padding: 20px;
    background-color: var(--bg-light);
}

.course-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.course-level {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.course-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.course-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-color);
}

.course-features {
    margin-bottom: 24px;
    flex: 1;
}

.course-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-color);
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.course-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.btn-select-course {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.btn-select-course:hover {
    background-color: #a83838;
}

/* Testimonials Section - Card Grid */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author strong {
    font-size: 17px;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-item img {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-text {
    flex: 1;
    min-width: 280px;
}

.benefit-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.benefit-text p {
    line-height: 1.7;
    color: var(--text-color);
}

/* Form Section */
.cta-form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.cta-form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(199, 74, 74, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
}

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

/* FAQ Section - Card Grid */
.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 560px;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.faq-item:hover {
    background-color: #f0f0f0;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.trust-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.stat-item {
    min-width: 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 17px;
    color: var(--text-color);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--bg-white);
}

.final-cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-column p {
    line-height: 1.6;
    opacity: 0.85;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    opacity: 0.85;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px !important;
    text-align: left;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-cta-button {
    padding: 16px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sticky-cta-button:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

/* Page Hero */
.page-hero {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.page-hero p {
    font-size: 19px;
    color: var(--text-light);
}

/* Services Intro */
.services-intro {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-align: center;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.comparison-item {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    padding: 32px 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.comparison-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Enrollment CTA */
.enrollment-cta {
    padding: 80px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

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

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

/* About Page Styles */
.about-story {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 500;
}

.about-image {
    width: 100%;
    margin: 32px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-story p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

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

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

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

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

/* Team Section */
.team-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    text-align: center;
}

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

.team-member {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.team-role {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Achievements Section */
.achievements-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.achievements-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

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

.achievement-card {
    flex: 1;
    min-width: 240px;
    max-width: 260px;
    padding: 32px 24px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.achievement-icon {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.achievement-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.achievement-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Approach Section */
.approach-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--secondary-color);
    text-align: center;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.approach-image {
    width: 100%;
    margin: 32px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.why-choose-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.why-item {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 28px 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.why-item p {
    line-height: 1.6;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

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

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

/* Contact Page Styles */
.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-text p {
    line-height: 1.7;
    color: var(--text-color);
}

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

.additional-info h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.additional-info p {
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 12px;
}

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

.contact-map h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.map-placeholder {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.map-note {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Contact */
.faq-contact {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faq-contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-align: center;
}

/* Business Info */
.business-info {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.business-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    text-align: center;
}

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

.business-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 8px;
}

/* Legal Page Styles */
.legal-page {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--secondary-color);
}

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

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

.legal-content li {
    list-style: disc;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 8px;
}

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

.legal-content a:hover {
    color: #a83838;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-section h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

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

.service-info {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 17px;
    padding: 16px 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    color: var(--text-color);
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    text-align: center;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    counter-increment: step-counter;
}

.steps-list {
    counter-reset: step-counter;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 16px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .hero-section {
        height: 500px;
    }

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

    .intro-grid,
    .method-cards,
    .courses-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .achievements-grid,
    .why-grid {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 80px;
        right: 10px;
        left: 10px;
    }

    .sticky-cta-button {
        width: 100%;
        text-align: center;
    }

    .benefit-item {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

    .final-cta-section h2 {
        font-size: 28px;
    }
}
