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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

a {
    color: #8b0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.btn-primary {
    background-color: #8b0000;
    color: white;
}

.btn-primary:hover {
    background-color: #a00000;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #34495e;
    color: white;
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8b0000;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    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: #555;
}

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

.hero-svg {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

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

.back-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.back-link:hover {
    color: white;
}

.meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-info span {
    background-color: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}

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

.article-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.article-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-text h2 {
    margin-bottom: 1.5rem;
}

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

.content-svg {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* Features */
.features {
    background-color: white;
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Traditions */
.traditions {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.traditions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.traditions-grid {
    display: grid;
    gap: 40px;
}

.tradition-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tradition-image {
    width: 100%;
    height: auto;
}

.tradition-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

/* Team */
.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.course-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.features-list {
    display: grid;
    gap: 30px;
}

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

.feature-small-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

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

.awards-list {
    list-style: none;
}

.awards-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

/* Courses */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.course-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    padding: 20px;
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.course-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b0000;
    font-weight: bold;
}

.course-duration {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    color: #2c3e50;
}

/* Specializations */
.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.specialization-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.spec-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.spec-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    gap: 60px;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.feature-highlight.reverse {
    direction: rtl;
}

.feature-highlight.reverse > * {
    direction: ltr;
}

.feature-large-icon {
    width: 100%;
    height: auto;
    max-height: 200px;
}

.feature-text h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

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

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content blockquote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author small {
    font-size: 0.8rem;
    color: #888;
}

.testimonial-card.featured .testimonial-author span,
.testimonial-card.featured .testimonial-author small {
    color: rgba(255,255,255,0.8);
}

/* Stats */
.stats-section {
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stats-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #8b0000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Compact Testimonials */
.testimonials-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.compact-testimonial {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.compact-testimonial .stars {
    margin-bottom: 10px;
}

.compact-testimonial p {
    margin-bottom: 15px;
    font-style: italic;
}

.compact-testimonial strong {
    color: #2c3e50;
    font-size: 0.9rem;
}

/* Blog */
.featured-article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.featured-image {
    width: 100%;
    height: auto;
}

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

.category {
    background: #8b0000;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 10px;
}

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

.featured-content h2 {
    margin-bottom: 1rem;
}

.featured-content h2 a {
    color: #2c3e50;
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: #8b0000;
}

.read-more {
    color: #8b0000;
    font-weight: bold;
}

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

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    padding: 20px;
}

.blog-content {
    padding: 30px;
}

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

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

.blog-content h3 a:hover {
    color: #8b0000;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.category-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.post-count {
    background: #f8f9fa;
    color: #666;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 15px;
    display: inline-block;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.contact-info-section h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-method-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-method h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.office-hours {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.hours-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.office-hours ul {
    list-style: none;
    margin: 15px 0;
}

.office-hours li {
    padding: 5px 0;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.faq-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Map Section */
.map-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-illustration {
    width: 100%;
    height: auto;
}

.location-details {
    margin-top: 20px;
}

.location-details h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.location-details ul {
    list-style: none;
}

.location-details li {
    padding: 5px 0;
    color: #666;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content {
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: block;
}

.thanks-content h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.success-message {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 3rem;
}

.success-icon {
    width: 100%;
    height: auto;
}

.next-steps {
    display: grid;
    gap: 20px;
}

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

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

.step-content h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-reminder {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
}

.contact-reminder-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details {
    margin-top: 10px;
}

.contact-details p {
    margin-bottom: 5px;
}

.suggested-actions {
    margin-bottom: 60px;
}

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

.action-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.action-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.action-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.additional-resources {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: left;
}

.resources-list {
    display: grid;
    gap: 25px;
}

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

.resource-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.resource-content h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.resource-link {
    color: #8b0000;
    font-weight: bold;
}

.social-proof {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

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

.stat {
    text-align: center;
}

.stat .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #8b0000;
    margin-bottom: 5px;
}

.stat .stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Article Content */
.article-content {
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

.article-text ul, .article-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
}

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

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

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

.article-text blockquote {
    background: #f8f9fa;
    border-left: 4px solid #8b0000;
    padding: 20px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
}

.article-text blockquote cite {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
    color: #2c3e50;
}

/* Special Article Sections */
.debate-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 2rem 0;
}

.debate-side {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.debate-side h4 {
    color: #8b0000;
    margin-bottom: 10px;
}

.guards-section {
    display: grid;
    gap: 20px;
    margin: 2rem 0;
}

.guard-regiment {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.guard-regiment h4 {
    color: #8b0000;
    margin-bottom: 10px;
}

.guard-regiment p {
    margin-bottom: 5px;
}

.ceremony-stages {
    display: grid;
    gap: 20px;
    margin: 2rem 0;
}

.stage {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.stage h4 {
    color: #8b0000;
    margin-bottom: 10px;
}

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

.usage-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.usage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.usage-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.usage-item ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.usage-item li {
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.usage-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b0000;
}

/* Author Bio */
.author-bio {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.author-info p {
    margin-bottom: 10px;
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
}

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

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

.related-article {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.related-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    padding: 15px;
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.related-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

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

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

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.legal-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.legal-section ul {
    margin-bottom: 1.5rem;
}

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

.company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 1rem 0;
}

.contact-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 1rem 0;
}

.cookie-table {
    display: grid;
    gap: 20px;
    margin: 1.5rem 0;
}

.cookie-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.cookie-item h4 {
    color: #8b0000;
    margin-bottom: 10px;
}

.cookie-item p {
    margin-bottom: 5px;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

.browser-links {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 1rem 0;
}

.browser-links h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.browser-links li {
    margin-bottom: 5px;
}

.help-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 2rem 0;
}

.help-section h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

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

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

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

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

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

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

.contact-info {
    display: grid;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-grid.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tradition-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-highlight.reverse {
        direction: ltr;
    }
    
    .testimonials-grid .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .success-message {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .debate-section {
        grid-template-columns: 1fr;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .content-section {
        margin-bottom: 60px;
    }
}

/* Print Styles */
@media print {
    .cookie-banner,
    .navbar,
    .footer,
    .cta,
    .newsletter-section {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .page-header {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    .article-header {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .btn {
        display: none;
    }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link.active::after {
        height: 3px;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-width: 3px;
    }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #8b0000;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
