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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1a1a1a;
    border: 2px solid #f4b942;
    border-radius: 10px;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    display: none;
}

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

.cookie-content h3 {
    color: #f4b942;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.cookie-content p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}

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

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

.cookie-btn.accept {
    background: #f4b942;
    color: #000;
}

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: #000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.nav-logo span {
    background: #f4b942;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

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

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

.nav-link:hover {
    color: #f4b942;
}

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

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    opacity: 0.8;
}

.cta-btn {
    background: #f4b942;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 185, 66, 0.3);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #111;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.benefits-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

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

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f4b942;
}

.benefit-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Knowledge Section */
.knowledge {
    padding: 80px 0;
    background: #000;
}

.knowledge-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.knowledge-text {
    flex: 1;
}

.knowledge h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.knowledge p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.knowledge-points {
    margin: 2rem 0;
}

.knowledge-points h3 {
    color: #f4b942;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.knowledge-points ul {
    list-style: none;
    padding-left: 0;
}

.knowledge-points li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.knowledge-points li:before {
    content: "•";
    color: #f4b942;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.knowledge-footer {
    color: #ccc;
    font-style: italic;
}

.knowledge-image {
    flex: 1;
}

.knowledge-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    opacity: 0.8;
}

.knowledge-cta {
    text-align: center;
    padding: 3rem 0;
}

.knowledge-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f4b942;
}

/* Engagement Section */
.engagement {
    padding: 80px 0;
    background: #111;
}

.engagement h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.engagement > .container > p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.engagement-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
}

.engagement-image {
    flex: 1;
}

.engagement-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    opacity: 0.8;
}

.engagement-text {
    flex: 1;
}

.engagement-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #f4b942;
}

.engagement-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #000;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #f4b942;
}

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

.contact-form .cta-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #f4b942;
    color: #000;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

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

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid #333;
        width: 80%;
        text-align: center;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content,
    .hero-image {
        flex: none;
        width: 100%;
    }
    
    .benefits h2,
    .knowledge h2,
    .engagement h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .knowledge-content,
    .engagement-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .knowledge-text,
    .knowledge-image,
    .engagement-text,
    .engagement-image {
        flex: none;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .benefits,
    .knowledge,
    .engagement,
    .contact {
        padding: 60px 0;
    }
    
    .nav-logo span {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .form-group input {
        padding: 12px 16px;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}