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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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;
    line-height: 1.7;
}

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

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

.btn-primary:hover {
    background-color: #b8281f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f4c430;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e6b328;
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: transparent;
    color: #d4332a;
    border: 2px solid #d4332a;
}

.btn-tertiary:hover {
    background-color: #d4332a;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text h3 {
    margin-bottom: 10px;
    color: #f4c430;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4332a;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4332a;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

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

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

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

.hero-text h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #d4332a 0%, #b8281f 100%);
    color: white;
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    color: #d4332a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
}

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

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

/* Content Sections */
.about-content, .services-content, .testimonials-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text h2 {
    color: #d4332a;
    margin-bottom: 25px;
}

.content-text h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-text p {
    color: #666;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4332a;
    font-weight: bold;
}

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

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: white;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.member-image {
    margin-bottom: 20px;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h3 {
    color: #333;
    margin-bottom: 5px;
}

.member-role {
    color: #d4332a;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-card h3 {
    color: #d4332a;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
}

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

.learning-modules {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.module-section {
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.module-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.module-title h3 {
    color: #d4332a;
    margin-bottom: 5px;
}

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

.module-content h4 {
    color: #333;
    margin-bottom: 15px;
}

.module-topics {
    list-style: none;
    margin-bottom: 30px;
}

.module-topics li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.module-topics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4332a;
    font-weight: bold;
}

.module-benefits {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4332a;
}

.module-benefits h4 {
    color: #d4332a;
    margin-bottom: 15px;
}

.module-benefits ul {
    list-style: none;
}

.module-benefits li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.module-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d4332a;
}

.course-enrollment {
    padding: 80px 0;
    background-color: white;
}

.enrollment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.enrollment-features li {
    padding: 8px 0;
    color: #666;
}

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

/* Testimonials */
.featured-testimonials {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d4332a;
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fff8f0 0%, #f5f5f5 100%);
}

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

.star {
    color: #f4c430;
    font-size: 1.2rem;
    margin-right: 2px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info h4 {
    color: #333;
    margin-bottom: 5px;
}

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

.all-testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-meta h4 {
    color: #333;
    margin-bottom: 5px;
}

.testimonial-meta p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
}

.testimonial-stats {
    padding: 80px 0;
    background-color: #d4332a;
    color: white;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f4c430;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-cta {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.cta-content h2 {
    color: #333;
    margin-bottom: 20px;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.cta-image {
    width: 100px;
    height: 100px;
    margin: 40px auto 0;
}

/* Blog */
.featured-article {
    padding: 80px 0;
    background-color: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-label {
    background-color: #d4332a;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-content h2 {
    color: #333;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.article-date,
.article-author,
.reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.blog-articles {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #d4332a;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    margin-bottom: 15px;
}

.article-content h3 a {
    color: #333;
    transition: color 0.3s ease;
}

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

.article-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #888;
}

.read-more {
    color: #d4332a;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #b8281f;
}

.blog-categories {
    padding: 80px 0;
    background-color: white;
}

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

.category-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    background-color: white;
}

.category-card:hover {
    border-color: #d4332a;
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.category-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.category-count {
    color: #d4332a;
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4332a 0%, #b8281f 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    margin-bottom: 15px;
}

.newsletter-text p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 15px;
}

.form-group-inline {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

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

.newsletter-privacy {
    font-size: 0.8rem;
    opacity: 0.8;
}

.newsletter-privacy a {
    color: #f4c430;
    text-decoration: underline;
}

.newsletter-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

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

.contact-form-section h2 {
    color: #d4332a;
    margin-bottom: 15px;
}

.contact-form-section > p {
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

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

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

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

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

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #d4332a;
    text-decoration: underline;
}

.contact-info-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-section h2 {
    color: #d4332a;
    margin-bottom: 30px;
}

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

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

.contact-details h3 {
    color: #333;
    margin-bottom: 10px;
}

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

.contact-note {
    font-size: 0.9rem;
    color: #888;
}

.contact-details a {
    color: #d4332a;
    text-decoration: underline;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #d4332a;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.map-section {
    padding: 80px 0;
    background-color: white;
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    border: 2px dashed #ddd;
}

.map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    opacity: 0.6;
}

.map-info h3 {
    color: #d4332a;
    margin-bottom: 15px;
}

.map-info p {
    color: #666;
    margin-bottom: 10px;
}

/* Article Pages */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.article-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-to-blog {
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #d4332a;
}

.article-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-details .author-name {
    font-weight: 600;
    color: #333;
    display: block;
}

.author-details .author-title {
    font-size: 0.9rem;
    color: #666;
}

.article-details {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

.article-hero-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 10px;
}

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

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

.article-body h2 {
    color: #d4332a;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.article-body h3 {
    color: #333;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.article-body h4 {
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.article-body p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-body ul, .article-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-body li {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-body ul li {
    list-style-type: disc;
}

.article-body ol li {
    list-style-type: decimal;
}

.article-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.article-tags h3,
.article-share h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1rem;
}

.tag {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.share-btn {
    background-color: #d4332a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #b8281f;
}

.related-articles {
    max-width: 800px;
    margin: 80px auto 0;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.related-articles h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.related-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    background-color: white;
}

.related-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #d4332a;
}

.related-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    flex-shrink: 0;
}

.related-content h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1rem;
}

.related-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

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

.document-meta {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #d4332a;
}

.document-meta p {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.legal-document h2 {
    color: #d4332a;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-document h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document h4 {
    color: #555;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-document p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-document ul, .legal-document ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-document li {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #d4332a;
    margin: 30px 0;
}

.contact-box p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Cookie Policy Specific */
.cookie-management {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.cookie-panel {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cookie-panel h2 {
    color: #d4332a;
    margin-bottom: 15px;
}

.cookie-panel p {
    color: #666;
    margin-bottom: 25px;
}

.cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.cookie-table tr:hover {
    background-color: #f8f9fa;
}

/* Thanks Page */
.thanks-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    filter: hue-rotate(90deg) saturate(1.5);
}

.thanks-content h1 {
    color: #28a745;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.success-message {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    text-align: left;
}

.success-message h2 {
    color: #d4332a;
    text-align: center;
    margin-bottom: 30px;
}

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

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

.step-number {
    background-color: #d4332a;
    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 {
    color: #333;
    margin-bottom: 10px;
}

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

.contact-summary {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.contact-summary h2 {
    color: #d4332a;
    text-align: center;
    margin-bottom: 25px;
}

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

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

.contact-icon-small {
    width: 30px;
    height: 30px;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.recommended-content {
    margin-bottom: 50px;
}

.recommended-content h2 {
    color: #333;
    margin-bottom: 30px;
}

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

.recommendation-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.recommendation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.recommendation-card h3 {
    color: #d4332a;
    margin-bottom: 15px;
}

.recommendation-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.newsletter-signup-thanks {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.newsletter-signup-thanks h2 {
    color: #d4332a;
    text-align: center;
    margin-bottom: 15px;
}

.newsletter-signup-thanks p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form-inline {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form-inline input:focus {
    outline: none;
    border-color: #d4332a;
}

.navigation-actions {
    margin-bottom: 50px;
}

.navigation-actions h2 {
    color: #333;
    margin-bottom: 30px;
}

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

.social-proof {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.social-proof h2 {
    color: #d4332a;
    text-align: center;
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    text-align: center;
}

.stats-row .stat-item {
    padding: 20px;
}

.stats-row .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4332a;
    margin-bottom: 5px;
}

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

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: #f4c430;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f4c430;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #f4c430;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info a {
    color: #f4c430;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    text-align: center;
}

.footer-copyright p {
    color: #aaa;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .content-grid,
    .enrollment-content,
    .featured-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .article-footer {
        flex-direction: column;
    }
    
    .related-card {
        flex-direction: column;
        text-align: center;
    }
    
    .related-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .stats-grid,
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .features,
    .about-preview,
    .services-content,
    .testimonials-content,
    .blog-articles,
    .contact-content,
    .legal-content,
    .thanks-page {
        padding: 60px 0;
    }
    
    .features-grid,
    .articles-grid,
    .categories-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: 1;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .stats-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-consent,
    .footer,
    .btn,
    .newsletter-signup,
    .contact-form,
    .social-proof {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .article-content,
    .legal-content {
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    p, li {
        page-break-inside: avoid;
    }
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background-color: #000;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background-color: #fff;
        color: #000;
        border: 2px solid #000;
    }
    
    .feature-card,
    .testimonial-card,
    .article-card {
        border: 2px solid #000;
    }
}