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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header and Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #c41e3a;
}

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

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

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c41e3a;
}

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

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

/* Main Content */
main {
    margin-top: 80px;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #c41e3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.cta-button {
    background-color: #c41e3a;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #a01729;
}

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

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

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    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-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #c41e3a;
}

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

/* About Preview */
.about-preview {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

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

.learn-more {
    background-color: #c41e3a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.learn-more:hover {
    background-color: #a01729;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Services/Courses */
.services-overview {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.services-icon {
    width: 100px;
    height: 100px;
    margin: 20px auto;
}

.courses {
    padding: 80px 0;
}

.courses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

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

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

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

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

.course-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.duration, .price {
    font-weight: bold;
    color: #333;
}

.price {
    color: #c41e3a;
}

.course-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.course-content li {
    padding: 5px 0;
    color: #666;
}

.course-content li:before {
    content: "✓";
    color: #c41e3a;
    margin-right: 10px;
    font-weight: bold;
}

.enroll-btn {
    background-color: #c41e3a;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.enroll-btn:hover {
    background-color: #a01729;
}

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

.learning-modules h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

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

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

.module-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.module-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #c41e3a;
}

.module-card p {
    color: #666;
}

/* Course Features */
.course-features {
    padding: 80px 0;
}

.course-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

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

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #c41e3a;
}

.feature-item p {
    color: #666;
}

/* Testimonials */
.testimonials-intro {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

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

.testimonials-icon {
    width: 100px;
    height: 100px;
    margin: 20px auto;
}

.testimonials-grid {
    padding: 80px 0;
}

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

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

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

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

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.testimonial-author h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #c41e3a;
}

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

.rating {
    color: #ffd700;
    font-size: 1.2rem;
}

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

.stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

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

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

.stat-card h3 {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-weight: bold;
}

/* Blog */
.blog-intro {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.blog-icon {
    width: 100px;
    height: 100px;
    margin: 20px auto;
}

.blog-articles {
    padding: 80px 0;
}

.blog-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

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

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

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

.article-image {
    padding: 20px;
    text-align: center;
}

.article-image img {
    width: 80px;
    height: 80px;
}

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

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #c41e3a;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #c41e3a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* Blog Categories */
.blog-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

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

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

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #c41e3a;
}

.category-card p {
    color: #666;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #c41e3a;
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

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

.newsletter-btn {
    background-color: white;
    color: #c41e3a;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #f8f9fa;
}

/* Contact */
.contact-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #c41e3a;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #c41e3a;
}

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

.contact-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

.contact-form-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    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: #c41e3a;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

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

.submit-btn {
    background-color: #c41e3a;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background-color: #a01729;
}

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

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

.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 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #c41e3a;
}

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

/* Location */
.location {
    padding: 80px 0;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c41e3a;
}

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

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #c41e3a;
}

.location-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-info ul {
    list-style: none;
    margin-bottom: 20px;
}

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

.location-info li:before {
    content: "•";
    color: #c41e3a;
    margin-right: 10px;
}

.location-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

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

.thanks-icon img {
    width: 120px;
    height: 120px;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

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

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #c41e3a;
}

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

.step {
    text-align: center;
    padding: 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #c41e3a;
}

.step p {
    color: #666;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #c41e3a;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #a01729;
}

.btn-secondary {
    background-color: transparent;
    color: #c41e3a;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #c41e3a;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

/* Blog Article */
.blog-article {
    padding: 80px 0;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-image {
    text-align: center;
    margin-bottom: 40px;
}

.article-image img {
    width: 120px;
    height: 120px;
}

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

.article-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #c41e3a;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #c41e3a;
}

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

.article-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

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

.article-content li {
    margin-bottom: 10px;
    color: #666;
}

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

.recipe-box h3 {
    margin-top: 0;
    color: #c41e3a;
}

.article-tips {
    background-color: #e8f4f8;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #17a2b8;
}

.article-tips h3 {
    margin-top: 0;
    color: #17a2b8;
}

.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

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

.article-navigation a {
    color: #c41e3a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.article-navigation a:hover {
    color: #a01729;
}

.back-to-blog {
    text-align: center;
    flex-grow: 1;
}

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

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

.legal-text h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #c41e3a;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #c41e3a;
}

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

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 10px;
    color: #666;
}

.legal-text a {
    color: #c41e3a;
    text-decoration: none;
}

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

.update-date {
    font-style: italic;
    color: #999;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Cookie Controls */
.cookie-controls {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.cookie-controls h3 {
    margin-bottom: 20px;
    color: #c41e3a;
}

.cookie-settings-btn {
    background-color: #c41e3a;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-settings-btn:hover {
    background-color: #a01729;
}

.browser-instructions {
    margin: 30px 0;
}

.browser-instructions h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #c41e3a;
}

.browser-instructions p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #333;
    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 h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #c41e3a;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #c41e3a;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #a01729;
}

.cookie-btn.necessary {
    background-color: #6c757d;
    color: white;
}

.cookie-btn.necessary:hover {
    background-color: #5a6268;
}

.cookie-btn.customize {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.customize:hover {
    background-color: white;
    color: #333;
}

/* Form Styles */
.feedback-form {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feedback-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #c41e3a;
}

.feedback-form p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input input[type="radio"]:checked ~ label ~ label {
    color: #ffd700;
}

.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .article-navigation {
        flex-direction: column;
        text-align: center;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .features h2,
    .courses h2,
    .blog-articles h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .course-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-consent,
    .newsletter,
    .footer {
        display: none;
    }
    
    main {
        margin-top: 0;
    }
    
    .page-header {
        background: none;
        color: #333;
    }
    
    .hero {
        background: none;
    }
    
    .cta-button,
    .learn-more,
    .enroll-btn,
    .submit-btn {
        display: none;
    }
}
