* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cookie-popup.hidden {
    display: none;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
}

.cookie-link {
    text-decoration: underline;
    cursor: pointer;
}

.cookie-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #4a9b8e;
}

.cookie-btn.refuse {
    background: transparent;
    color: #333;
}

.cookie-btn.refuse:hover {
    background: #f5f5f5;
}

/* Header */
.header {
    background: #5db5a4;
    padding: 15px 0;
    position: relative;
}

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

.nav-brand {
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-cta {
    background: white;
    color: #5db5a4 !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.nav-cta:hover {
    opacity: 0.9 !important;
}

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

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #5db5a4;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-primary {
    background: white;
    color: #5db5a4;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Insights Section */
.insights {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.insights-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.insights-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

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

/* Webinars Section */
.webinars {
    padding: 100px 0;
    background: white;
}

.webinars h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.webinar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.webinar-card {
    background: #f0f7f6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 30px;
    text-align: center;
}

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

.webinar-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.webinar-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.webinar-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
    text-align: left;
}

.webinar-card .price {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 20px;
}

/* Learning Paths Section */
.learning-paths {
    padding: 100px 0;
    background: #f8f9fa;
}

.learning-paths h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.learning-paths > .container > p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.path-card {
    background: #e8f4f2;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.path-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.path-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

.btn-outline {
    background: #5db5a4;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #4a9b8e;
}

/* Why Professionals Section */
.why-professionals {
    padding: 100px 0;
    background: white;
}

.why-professionals h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.why-professionals > .container > p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-item {
    background: #f0f7f6;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: left;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #5db5a4;
    padding: 40px;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: white;
}

.contact-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.btn-send {
    width: 100%;
    background: white;
    color: #5db5a4;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send:hover {
    background: #f8f9fa;
}

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

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

.footer p {
    font-size: 14px;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #5db5a4;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        margin: 20px 0;
        opacity: 0;
        transform: translateX(50px);
        animation: slideIn 0.3s ease forwards;
    }
    
    .nav-links.active a:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .webinar-grid {
        grid-template-columns: 1fr;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .insights-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .insights-text {
        order: 2;
    }
    
    .insights-image {
        order: 1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content h3 {
        font-size: 24px;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .insights,
    .webinars,
    .learning-paths,
    .why-professionals,
    .contact {
        padding: 60px 0;
    }
    
    .insights-text h2,
    .webinars h2,
    .learning-paths h2,
    .why-professionals h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
        border-radius: 15px;
    }
}