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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    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: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    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;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-graphic .hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 60px 0;
}

.header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.header-text h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-text p {
    color: #bdc3c7;
    font-size: 1.1rem;
}

.header-graphic .header-image {
    width: 100%;
    height: auto;
    max-width: 300px;
}

/* Main Content Sections */
.intro-section,
.features-section,
.mission-section,
.team-section,
.approach-section,
.values-section,
.courses-overview,
.course-modules,
.learning-formats,
.featured-testimonials,
.all-testimonials,
.testimonial-stats,
.featured-articles,
.blog-categories,
.contact-form-section,
.faq-section,
.map-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.timeline-grid,
.features-grid,
.team-grid,
.approach-grid,
.modules-grid,
.formats-grid,
.testimonials-grid,
.articles-grid,
.categories-grid,
.resources-grid,
.stats-grid,
.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.modules-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.formats-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Cards */
.timeline-item,
.feature-card,
.team-member,
.approach-item,
.module-card,
.format-card,
.testimonial-card,
.article-card,
.category-card,
.resource-card,
.stat-item,
.faq-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover,
.feature-card:hover,
.team-member:hover,
.approach-item:hover,
.module-card:hover,
.format-card:hover,
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.timeline-icon,
.feature-icon,
.approach-icon {
    margin-bottom: 1rem;
}
.contact-info p{
    color: white;
}
.timeline-date {
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
}

.member-icon {
    margin-bottom: 1rem;
    text-align: center;
}

.member-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Module Cards */
.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.module-duration {
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.module-topics {
    list-style: none;
    margin: 1rem 0;
}

.module-topics li {
    padding: 0.25rem 0;
    color: #666;
}

.module-topics li::before {
    content: '•';
    color: #3498db;
    margin-right: 0.5rem;
}

.level-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level-badge.beginner {
    background-color: #2ecc71;
    color: white;
}

.level-badge.intermediate {
    background-color: #f39c12;
    color: white;
}

.level-badge.advanced {
    background-color: #e74c3c;
    color: white;
}

/* Format Cards */
.format-card.featured {
    border: 2px solid #3498db;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.format-features {
    list-style: none;
    margin: 1rem 0;
}

.format-features li {
    padding: 0.25rem 0;
    color: #666;
}

.format-features li::before {
    content: '✓';
    color: #2ecc71;
    margin-right: 0.5rem;
    font-weight: bold;
}

.format-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1rem;
}

/* Testimonials */
.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar img {
    border-radius: 50%;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #f1c40f;
    font-size: 1rem;
}

.testimonial-course {
    font-style: italic;
    color: #3498db;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Articles */
.article-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-date {
    color: #666;
}

.article-category {
    color: #3498db;
    font-weight: 600;
}

.article-content h3 {
    margin-bottom: 1rem;
}

.article-content h3 a {
    color: #2c3e50;
}

.article-content h3 a:hover {
    color: #3498db;
}

.article-author {
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.read-more {
    color: #3498db;
    font-weight: 600;
}

/* Category Cards */
.category-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.category-card h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.category-card p {
    text-align: center;
    color: #666;
    margin-bottom: 0.5rem;
}

.article-count {
    display: block;
    text-align: center;
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Forms */
.form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #3498db;
    border-color: #3498db;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
}

.office-hours {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.office-hours ul {
    list-style: none;
    margin-top: 1rem;
}

.office-hours li {
    padding: 0.25rem 0;
    color: #666;
}

/* Newsletter */
.newsletter-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

.newsletter-signup {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

/* CTA Sections */
.cta-section,
.services-cta,
.testimonial-cta,
.blog-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 80px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.cta-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-text p {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-graphic .cta-image {
    width: 100%;
    height: auto;
    max-width: 300px;
}

/* Thanks Page */
.thanks-page {
    padding: 80px 0;
}

.thanks-hero {
    text-align: center;
    padding: 60px 0;
}

.thanks-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-text h1 {
    color: #27ae60;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.thanks-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.next-steps {
    margin: 2rem 0;
}

.step-list {
    text-align: left;
    margin-top: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    background-color: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h4 {
    margin-bottom: 0.5rem;
}

.contact-reminder {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.while-you-wait,
.featured-content,
.social-proof {
    padding: 60px 0;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.community-stats .stat-item {
    text-align: center;
}

.community-stats .stat-item h3 {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

/* Article Pages */
.article-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #bdc3c7;
}

.breadcrumb a:hover {
    color: white;
}

.article-hero {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-meta span {
    color: #bdc3c7;
}

.read-time {
    color: #95a5a6;
}

.article-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.article-author-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar img {
    border-radius: 50%;
}

.author-details h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.author-details p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.article-main {
    padding: 80px 0;
}

.article-body {
    max-width: none;
}

.article-body .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.article-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-body ul,
.article-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #555;
}

.article-highlight {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.article-highlight h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 0;
}

.article-quote {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.article-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.article-quote cite {
    color: #666;
    font-size: 0.9rem;
}

.article-image-inline {
    margin: 2rem 0;
    text-align: center;
}

.inline-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.article-cta {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateX(5px);
}

.related-article img {
    border-radius: 4px;
}

.related-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.related-content h4 a {
    color: #2c3e50;
}

.related-content h4 a:hover {
    color: #3498db;
}

.related-date {
    font-size: 0.8rem;
    color: #666;
}

.course-promo {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.course-promo h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.course-promo ul {
    list-style: none;
    margin: 1rem 0;
}

.course-promo li {
    padding: 0.25rem 0;
    color: #666;
}

.course-promo li::before {
    content: '✓';
    color: #2ecc71;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

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

.last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
}

.legal-section h3 {
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Cookie Policy Tables */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.cookie-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-preferences {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.browser-instructions {
    margin-top: 2rem;
}

.browser-instructions h4 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.browser-instructions ol {
    margin-bottom: 1rem;
}

/* Map Section */
.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.location-details ul {
    list-style: none;
    margin-top: 1rem;
}

.location-details li {
    padding: 0.5rem 0;
    color: #666;
}

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

.map-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Mission Content */
.mission-content,
.values-content,
.content-preview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-item h4 {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.preview-fact {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.preview-fact h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content,
    .header-content,
    .cta-content,
    .newsletter-content,
    .contact-content,
    .thanks-content,
    .mission-content,
    .values-content,
    .content-preview,
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-card.featured {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .header-text h1 {
        font-size: 2rem;
    }
    
    .thanks-text h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .sidebar-section {
        position: static;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .timeline-grid,
    .features-grid,
    .team-grid,
    .modules-grid,
    .formats-grid,
    .articles-grid,
    .categories-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero,
    .page-header {
        padding: 40px 0;
    }
    
    .intro-section,
    .features-section,
    .mission-section,
    .team-section,
    .approach-section,
    .values-section,
    .courses-overview,
    .course-modules,
    .learning-formats,
    .featured-testimonials,
    .all-testimonials,
    .testimonial-stats,
    .featured-articles,
    .blog-categories,
    .contact-form-section,
    .faq-section,
    .map-section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .cookie-banner,
    .navbar,
    .cta-section,
    .services-cta,
    .testimonial-cta,
    .blog-cta,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .article-content {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3498db;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}
