/* 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: #fafafa;
}

/* 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;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    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;
    text-decoration: none;
}

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

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

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

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

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

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.navigation {
    display: flex;
    align-items: center;
}

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

.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;
    text-decoration: none;
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner:not(.hidden) {
    transform: translateY(0);
}

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

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

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

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

.header-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 0;
}

.header-graphic {
    text-align: center;
}

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

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 5rem 0;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-graphic {
    text-align: center;
}

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

/* Content Sections */
.content-section,
.features-section,
.quick-links-section,
.mission-section,
.course-info-section,
.team-section,
.cta-section,
.services-overview,
.learning-modules,
.course-formats,
.featured-museums,
.featured-testimonials,
.course-testimonials,
.success-stories,
.stats-section,
.latest-articles,
.blog-categories,
.newsletter-section,
.contact-form-section,
.faq-section,
.location-section,
.thank-you-section,
.while-waiting-section,
.quick-contact-section,
.social-proof-section,
.featured-article {
    padding: 4rem 0;
}

.section-content h2,
.features-section h2,
.quick-links-section h2,
.mission-section h2,
.course-info-section h2,
.team-section h2,
.cta-section h2,
.services-overview h2,
.learning-modules h2,
.course-formats h2,
.featured-museums h2,
.featured-testimonials h2,
.course-testimonials h2,
.success-stories h2,
.latest-articles h2,
.blog-categories h2,
.newsletter-section h2,
.contact-form-section h2,
.faq-section h2,
.location-section h2,
.thank-you-section h2,
.while-waiting-section h2,
.quick-contact-section h2,
.social-proof-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Grids */
.features-grid,
.quick-links-grid,
.mission-grid,
.services-grid,
.formats-grid,
.museums-grid,
.testimonials-grid,
.testimonials-row,
.success-stories-grid,
.stats-grid,
.articles-grid,
.categories-grid,
.explore-grid,
.faq-grid,
.related-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

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

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

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

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

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

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

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

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

/* Cards */
.feature-card,
.quick-link-card,
.mission-card,
.service-card,
.format-card,
.museum-card,
.testimonial-card,
.success-story,
.article-card,
.category-card,
.explore-card,
.faq-item,
.related-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.quick-link-card,
.explore-card,
.related-card {
    text-decoration: none;
    color: inherit;
}

.feature-card:hover,
.quick-link-card:hover,
.mission-card:hover,
.service-card:hover,
.format-card:hover,
.testimonial-card:hover,
.article-card:hover,
.category-card:hover,
.explore-card:hover,
.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.quick-link-card:hover,
.explore-card:hover,
.related-card:hover {
    text-decoration: none;
}

.feature-icon,
.quick-link-icon,
.mission-icon,
.service-icon,
.category-icon,
.explore-icon,
.related-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.feature-card h3,
.quick-link-card h3,
.mission-card h3,
.service-card h3,
.format-card h3,
.museum-card h3,
.category-card h3,
.explore-card h3,
.faq-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p,
.quick-link-card p,
.mission-card p,
.service-card p,
.format-card p,
.museum-card p,
.category-card p,
.explore-card p,
.faq-item p {
    color: #666;
    margin-bottom: 0;
}

/* Service Features */
.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Learning Modules */
.modules-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

.modules-list {
    max-width: 800px;
    margin: 0 auto;
}

.module-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.module-number {
    background: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.module-content h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.module-content p {
    margin-bottom: 0;
    color: #555;
}

/* Format Details */
.format-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.detail-item {
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #555;
}

/* Testimonials */
.testimonial-card.featured {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 0;
}

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

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.author-info span {
    color: #666;
    font-size: 0.875rem;
}

/* Course Feedback Sections */
.course-feedback-section {
    margin-bottom: 3rem;
}

.course-feedback-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

/* Success Stories */
.success-story {
    text-align: left;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.success-story h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.success-story cite {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    display: block;
}

/* Stats */
.stat-item,
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-item h3,
.stat-card h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-item p,
.stat-card p {
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

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

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

/* Articles */
.article-image-container {
    position: relative;
    margin-bottom: 1rem;
}

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

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.article-content {
    text-align: left;
}

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

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

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

.article-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
    flex-wrap: wrap;
}

.read-more {
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Featured Article */
.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-text .article-category {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.featured-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.featured-image {
    text-align: center;
}

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

/* Blog Categories */
.post-count {
    background: #e9ecef;
    color: #666;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-top: 1rem;
    display: inline-block;
}

/* Newsletter */
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
}

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

.checkbox-group input {
    margin: 0;
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.contact-info-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

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

.contact-item p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-item {
    text-align: left;
    padding: 1.5rem;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
    margin-bottom: 0;
}

/* Location */
.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.transport-info h3,
.nearby-attractions h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.transport-info ul,
.nearby-attractions ul {
    list-style: none;
}

.transport-info li,
.nearby-attractions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.transport-info li:last-child,
.nearby-attractions li:last-child {
    border-bottom: none;
}

/* Thank You Page */
.thank-you-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.thank-you-graphic {
    text-align: center;
}

.thank-you-image {
    width: 200px;
    height: 200px;
}

.confirmation-details {
    margin: 2rem 0;
}

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

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    margin-bottom: 0;
    color: #555;
}

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

.contact-confirmation p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-confirmation p:last-child {
    margin-bottom: 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-option {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-option h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-option p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-option p:last-child {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #666;
}

.testimonial-highlight {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto 0;
}

.testimonial-highlight blockquote {
    font-style: italic;
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial-highlight cite {
    color: #666;
    font-size: 0.875rem;
}

/* Blog Article Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    padding: 3rem 0;
    background: #f8f9fa;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header .article-meta {
    margin-bottom: 2rem;
}

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

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

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

.author-details h4 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.author-details p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.875rem;
}

.article-content {
    padding: 3rem 0;
}

.article-body {
    line-height: 1.8;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.article-body p {
    margin-bottom: 1.5rem;
    color: #444;
}

.article-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.125rem;
    color: #555;
}

.article-body .content-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 8px;
}

.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

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

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

.article-cta p {
    margin-bottom: 1.5rem;
    color: #555;
}

.related-articles {
    padding: 3rem 0;
    background: #f8f9fa;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.related-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.related-card h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.related-card p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.875rem;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    color: #666;
}

.legal-document h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.legal-document h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-document ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

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

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

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

.cookie-settings-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cookie-settings-section h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cookie-settings-section p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: #2c3e50;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 0;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .header-text h1 {
        font-size: 2.5rem;
    }
    
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 2.5rem;
    }
    
    /* Layout */
    .hero-content,
    .header-content,
    .featured-content,
    .contact-content,
    .thank-you-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Module Items */
    .module-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Steps */
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Article Body */
    .article-body .content-image {
        max-width: 100%;
    }
    
    /* Tables */
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .header-text h1 {
        font-size: 2rem;
    }
    
    .featured-text h2 {
        font-size: 1.75rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .feature-card,
    .quick-link-card,
    .mission-card,
    .service-card,
    .format-card,
    .museum-card,
    .testimonial-card,
    .success-story,
    .article-card,
    .category-card,
    .explore-card,
    .faq-item,
    .related-card {
        padding: 1.5rem;
    }
    
    .module-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cta-section,
    .related-articles {
        display: none;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4 {
        color: black;
        page-break-after: avoid;
    }
    
    .article-content {
        padding: 0;
    }
    
    .legal-document {
        max-width: none;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}
