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

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

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

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
}

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

.btn-primary {
    background: #b8d234;
    color: #000;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #a5c020;
    transform: translateY(-2px);
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background:  url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #2a2a2a;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-text {
    color: #fff;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.features-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.features-grid .feature-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 48%;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #b8d234, #9db820);
    padding: 2.5rem;
    border-radius: 15px;
    color: #000;
    box-shadow: 0 10px 30px rgba(184, 210, 52, 0.2);
    transition: transform 0.3s;
}

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

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #fff;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.why-choose > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.why-choose-item .icon {
    width: 40px;
    height: 40px;
    background: #b8d234;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.item-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.item-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #fff;
}

.how-it-works-grid-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.how-it-works-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.how-card, .how-card-small {
    background: linear-gradient(135deg, #b8d234, #9db820);
    padding: 2rem;
    border-radius: 15px;
    color: #000;
    box-shadow: 0 10px 30px rgba(184, 210, 52, 0.2);
    transition: transform 0.3s;
}

.how-card:hover, .how-card-small:hover {
    transform: translateY(-5px);
}

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

.how-card-small .how-image {
    height: 150px;
}

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

.how-card h3, .how-card-small h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.how-card p, .how-card-small p {
    line-height: 1.6;
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.contact > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    color: #fff;
}

.contact-item .icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8d234;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 3rem 0 2rem;
    color: #fff;
    border-top: 1px solid #333;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: #b8d234;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    visibility: visible;
    opacity: 1;
}

.cookie-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cookie-content h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept {
    background: #b8d234;
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-accept:hover {
    background: #a5c020;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-reject:hover {
    border-color: #999;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid .feature-card:nth-child(5) {
        max-width: 100%;
    }
    
    .how-it-works-grid-top {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text h2,
    .features h2,
    .why-choose h2,
    .how-it-works h2,
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .how-it-works-grid-bottom {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-reject {
        width: 100%;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-text h2,
    .features h2,
    .why-choose h2,
    .how-it-works h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .how-card,
    .how-card-small {
        padding: 1.5rem;
    }
    
    .why-choose-item {
        gap: 1rem;
    }
    
    .cookie-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

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

/* Animation improvements */
.feature-card,
.how-card,
.how-card-small,
.why-choose-item {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar background change on scroll */
.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
}