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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a365d;
}

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

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

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2c5aa0;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    background-color: #3182ce;
    color: white;
    border-color: #3182ce;
}

.btn-primary:hover {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
    color: white;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #718096;
    color: white;
    border-color: #718096;
}

.btn-secondary:hover {
    background-color: #4a5568;
    border-color: #4a5568;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #3182ce;
    border-color: #3182ce;
}

.btn-outline:hover {
    background-color: #3182ce;
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

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

.cookie-banner.show {
    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: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link:hover,
.nav-link.active {
    color: #3182ce;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

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

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

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    color: #e2e8f0;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

.service-card.detailed {
    text-align: left;
}

.service-card.detailed ul {
    margin-top: 1rem;
}

/* About Section */
.about-preview,
.about-content,
.about-intro {
    padding: 5rem 0;
}
.about-text ul {
    margin-top: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Company Values */
.company-values {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.company-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

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

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

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

.position {
    color: #3182ce;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Course Info */
.course-info {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

/* Main Services */
.main-services {
    padding: 5rem 0;
}

.main-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Course Features */
.course-features {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

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

.feature-item h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

/* Learning Modules */
.learning-modules {
    padding: 5rem 0;
}

.learning-modules h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3182ce;
}

.module-card h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

.duration {
    display: inline-block;
    background-color: #e6fffa;
    color: #234e52;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Additional Services */
.additional-services {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.additional-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

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

.additional-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-hero {
    padding: 5rem 0;
}

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

.student-testimonials,
.business-testimonials {
    padding: 5rem 0;
}

.student-testimonials {
    background-color: #f7fafc;
}

.student-testimonials h2,
.business-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.testimonial-card,
.business-testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
}

.testimonial-author h4,
.company-info h4 {
    margin-bottom: 0.25rem;
    color: #1a365d;
}

.testimonial-author span,
.company-info span {
    color: #718096;
    font-size: 0.875rem;
}

.rating {
    color: #f6ad55;
    margin-top: 0.5rem;
}

.testimonial-stats {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
}

/* Statistics */
.statistics {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #3182ce;
    margin-bottom: 0.5rem;
}

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

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

.cta-content p {
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

/* Blog */
.blog-hero {
    padding: 5rem 0;
}

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

.blog-articles {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.blog-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

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

.article-meta .date {
    color: #718096;
}

.article-meta .category {
    background-color: #e6fffa;
    color: #234e52;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

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

.read-more {
    color: #3182ce;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.read-more:hover {
    border-bottom-color: #3182ce;
}

/* Newsletter */
.newsletter-signup {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    text-align: center;
}

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

.newsletter-content p {
    color: #e2e8f0;
    margin-bottom: 2rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

/* Blog Categories */
.blog-categories {
    padding: 5rem 0;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

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

.category-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Contact */
.contact-hero {
    padding: 5rem 0;
}

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

.contact-benefits ul {
    margin-top: 1.5rem;
}

.contact-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

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

.contact-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.contact-details p {
    color: #4a5568;
    margin-bottom: 0.25rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}

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

.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    position: relative;
    height: 400px;
    background-color: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thank-you-image img {
    width: 100%;
    max-width: 300px;
}

.thank-you-text h1 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.steps-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.step-content h3 {
    margin-bottom: 0.5rem;
}

.contact-urgency {
    background-color: #fed7d7;
    border: 1px solid #fc8181;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-urgency h3 {
    color: #c53030;
    margin-bottom: 1rem;
}

.urgent-contact {
    margin-top: 1rem;
    text-align: center;
}

.urgent-contact strong {
    display: block;
    font-size: 1.5rem;
    color: #c53030;
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Additional Resources */
.additional-resources {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resource-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Quick Contact */
.quick-contact {
    padding: 5rem 0;
}

.contact-summary h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-detail img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Legal Content */
.legal-content {
    padding: 5rem 0;
}

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

.legal-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 12px;
}

.legal-intro img {
    width: 80px;
    height: 80px;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3182ce;
}

.legal-section h3 {
    color: #2d3748;
    margin: 2rem 0 1rem 0;
}

.legal-section h4 {
    color: #4a5568;
    margin: 1.5rem 0 0.75rem 0;
}

/* Tables */
.cookie-table,
.comparison-table table,
.sanctions-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.cookie-table th,
.comparison-table th,
.sanctions-table th {
    background-color: #4299e1;
    color: white;
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
}

/* Cookie Controls */
.cookie-controls {
    margin: 1.5rem 0;
    text-align: center;
}

#manage-cookies {
    background-color: #3182ce;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

#manage-cookies:hover {
    background-color: #2c5aa0;
}

/* Article Styles */
.article-header {
    padding: 3rem 0;
    background-color: #f7fafc;
}

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

.back-to-blog {
    color: #3182ce;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.back-to-blog:hover {
    text-decoration: underline;
}

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

.article-info .category {
    background-color: #e6fffa;
    color: #234e52;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.article-info .date,
.article-info .read-time {
    color: #718096;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.article-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-top: 2rem;
    border-radius: 8px;
}

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

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

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

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

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

.article-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

/* Highlight Boxes */
.highlight-box,
.important-note {
    background-color: #ebf8ff;
    border: 1px solid #90cdf4;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h4,
.important-note h4 {
    color: #2b6cb0;
    margin-bottom: 1rem;
}

.important-note {
    background-color: #fed7d7;
    border-color: #fc8181;
}

.important-note h4 {
    color: #c53030;
}

/* Timeline */
.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    background-color: #3182ce;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    white-space: nowrap;
    align-self: flex-start;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #1a365d;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
}

.comparison-table h4 {
    margin-bottom: 1rem;
    text-align: center;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #e2e8f0;
    margin-bottom: 2rem;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.author-box,
.related-articles,
.share-article,
.download-resources,
.calendar-widget,
.emergency-contact,
.legal-disclaimer {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.author-box h3,
.related-articles h3,
.share-article h3,
.download-resources h3,
.calendar-widget h3,
.emergency-contact h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

.related-articles ul,
.download-resources ul {
    list-style: none;
    padding: 0;
}

.related-articles li,
.download-resources li {
    margin-bottom: 0.75rem;
}

.related-articles a,
.download-resources a {
    color: #3182ce;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.related-articles a:hover,
.download-resources a:hover {
    border-bottom-color: #3182ce;
}

.download-link {
    display: inline-block;
    color: #3182ce;
    text-decoration: none;
    padding: 0.5rem 0;
}

.download-link:before {
    content: '📁 ';
    margin-right: 0.5rem;
}

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

.share-btn {
    background-color: #e2e8f0;
    color: #4a5568;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.share-btn:hover {
    background-color: #cbd5e0;
    color: #2d3748;
}

/* Calendar Widget */
.upcoming-deadlines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deadline-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.deadline-date {
    background-color: #3182ce;
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    text-align: center;
    white-space: nowrap;
}

.deadline-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.deadline-info p {
    margin: 0;
    font-size: 0.875rem;
    color: #718096;
}

/* Emergency Contact */
.emergency-info {
    background-color: #fed7d7;
    border: 1px solid #fc8181;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.emergency-info p {
    margin-bottom: 0.5rem;
}

.emergency-info .small-text {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Legal Disclaimer */
.legal-disclaimer h4 {
    color: #c53030;
    margin-bottom: 0.5rem;
}

.legal-disclaimer .small-text {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.4;
    margin: 0;
}

/* Case Studies */
.case-study {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.case-study h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Planning Section */
.planning-section {
    margin: 2rem 0;
}

.planning-section h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: #e6fffa;
    border-radius: 6px;
}

/* Calendar Section */
.calendar-section {
    background-color: #f7fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.calendar-section h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Document Retention Table */
.document-retention {
    margin: 2rem 0;
}

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

.document-retention th,
.document-retention td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.document-retention th {
    background-color: #4299e1;
    color: white;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .hero-content,
    .contact-hero-content,
    .blog-hero-content,
    .course-content,
    .features-content,
    .thank-you-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-buttons,
    .cta-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: auto;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-date {
        align-self: flex-start;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero,
    .page-header,
    .services-overview,
    .about-preview,
    .testimonials-hero,
    .contact-hero,
    .blog-hero,
    .contact-form-section,
    .map-section,
    .faq-section,
    .thank-you-section,
    .additional-resources,
    .quick-contact,
    .legal-content,
    .article-content {
        padding: 3rem 0;
    }

    .hero-text h1,
    .page-header h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .footer,
    .cta-box,
    .share-article,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    .article-content {
        padding: 0;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* 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 better accessibility */
*:focus {
    outline: 2px solid #3182ce;
    outline-offset: 2px;
}

.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.5);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border-width: 2px;
    }
    
    .service-card,
    .testimonial-card,
    .article-card {
        border: 1px solid #000;
    }
}
