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

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #2e0800;
    background-color: #fff;
    word-break: break-word;
}

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

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

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

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

a {
    text-decoration: none;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Lora', serif;
}

.btn-primary {
    background-color: #f5c0b5;
    color: #2e0800;
}

.btn-primary:hover {
    background-color: #2e0800;
    color: #f5c0b5;
}

.btn-secondary {
    background-color: transparent;
    color: #2e0800;
    border: 2px solid #f5c0b5;
}

.btn-secondary:hover {
    background-color: #f5c0b5;
    color: #2e0800;
}

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

.cookie-banner p {
    color: white;
    margin-bottom: 0;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background-color: #f5c0b5;
    color: #2e0800;
}

.btn-necessary {
    background-color: transparent;
    color: white;
    border: 1px solid #f5c0b5;
}

.btn-custom {
    background-color: transparent;
    color: #f5c0b5;
    border: 1px solid #f5c0b5;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(46, 8, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.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;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e0800;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2e0800;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f5c0b5;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: white;
}

.hero-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(46, 8, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(46, 8, 0, 0.5);
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

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

.section-header h2 {
    margin-top: 1rem;
}

.section-icon {
    margin: 0 auto;
}

/* Company Info */
.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.company-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.placeholder-image {
    width: 100%;
    border-radius: 10px;
}

/* Benefits */
.benefits {
    background-color: #f8f8f8;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(46, 8, 0, 0.1);
}

.benefit-item h3 {
    margin: 1rem 0;
}

/* Featured Course */
.course-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.course-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.course-rating {
    margin-bottom: 1rem;
}

.stars {
    color: #f5c0b5;
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    margin-left: 0.5rem;
}

.course-details {
    margin: 2rem 0;
}

.detail-item {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.discount {
    color: #f5c0b5;
    font-weight: 600;
}

.launch {
    background-color: #f5c0b5;
    color: #2e0800;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 600;
}

/* Achievements */
.achievements {
    background-color: #2e0800;
    color: white;
}

.achievements .section-header h2 {
    color: white;
}

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

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f5c0b5;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.1rem;
    color: white;
}

/* Reviews */
.reviews {
    background-color: #f8f8f8;
}

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

.review-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(46, 8, 0, 0.1);
}

.review-stars {
    color: #f5c0b5;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1rem;
    font-weight: 600;
    color: #2e0800;
}

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

.faq-item {
    padding: 1.5rem;
    border-left: 4px solid #f5c0b5;
    background-color: #f8f8f8;
}

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

/* Newsletter */
.newsletter {
    background-color: #2e0800;
    color: white;
}

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

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

.newsletter-text p {
    color: white;
    font-size: 1.1rem;
}

.newsletter-form {
    display: grid;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-family: 'Lora', serif;
    font-size: 1rem;
}

.form-group input:focus {
    outline: 2px solid #f5c0b5;
}

/* Footer */
footer p {
    color: white;
}
.footer {
    background-color: #2e0800;
    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 {
    color: #f5c0b5;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f5c0b5;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 2px 10px rgba(46, 8, 0, 0.1);
    }

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

    .nav-menu li {
        padding: 1rem 20px;
        border-bottom: 1px solid #f5c0b5;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .company-grid,
    .course-featured,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

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

    section {
        padding: 2rem 0;
    }

    .nav-container {
        padding: 1rem 15px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

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

    .benefit-item,
    .review-item {
        padding: 1.5rem;
    }
}

/* Hide elements without JavaScript support */
.no-js .mobile-menu-toggle {
    display: none;
}

.no-js .nav-menu {
    display: flex !important;
}