/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background-color: #8A1538;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #6e102c;
}

/* Header and Navigation */
header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #8A1538;
}

.menu ul {
    display: flex;
}

.menu ul li {
    margin-left: 30px;
}

.menu ul li a {
    font-weight: 500;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #8A1538;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin-bottom: 5px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Knowledge Action Section */
.knowledge-action {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.knowledge-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.knowledge-action h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.knowledge-text {
    max-width: 900px;
    margin: 0 auto;
}

/* Modules Section */
.modules {
    padding: 60px 0;
    background-color: #fff;
}

.modules h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.module-card {
    background-color: #8A1538;
    color: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.module-card.wide {
    grid-column: span 1.5;
}

.module-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.module-card h3 {
    font-size: 20px;
    font-weight: 600;
}

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

.testimonials h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    background-color: #fff;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-weight: 600;
    text-align: right;
}

/* Why Choose Section */
.why-choose {
    padding: 60px 0;
    background-color: #fff;
}

.why-choose h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

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

.benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background-color: #8A1538;
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

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

.contact-banner {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background-color: #e8c0c9;
}

.form-group input::placeholder {
    color: #333;
}

.form-group button {
    width: 100%;
}

/* Footer */
footer {
    padding: 40px 0 20px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 20px;
    font-weight: 700;
    color: #8A1538;
    margin-bottom: 0;
}

.footer-links a {
    margin-left: 20px;
    font-size: 14px;
    color: #666;
}

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

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: #8A1538;
    color: white;
    border-radius: 10px;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-popup h3 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.cookie-popup p {
    text-align: center;
    margin-bottom: 20px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.cookie-btn.reject {
    background-color: white;
    color: #8A1538;
}

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

.cookie-btn:hover {
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .module-card.wide {
        grid-column: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    
    .modules-grid, 
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        margin-left: 0;
    }
    
    .cookie-popup {
        width: 95%;
        max-width: 450px;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
    
    .module-number {
        font-size: 36px;
    }
    
    .module-card h3,
    .benefit-card h3 {
        font-size: 18px;
    }
}

html {
    scroll-behavior: smooth;
}

.main-section {
    padding: 60px 0;
}
