* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9fdf9;
    color: #1e2a1e;
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Header & Navigation */
header {
    background: #0f3b1f;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #a5d6a7;
}

.btn-signup {
    background: #2e7d32;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.btn-signup:hover {
    background: #1b5e20;
    color: white;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f3b1f;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 0 0 40px 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: #0f3b1f;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
    background: #1b5e20;
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Slider Section */
.slider-section {
    padding: 3rem 2rem;
    text-align: center;
}

.slider-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0f3b1f;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
}

.slider-prev { left: 15px; }
.slider-next { right: 15px; }

.slider-dots {
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.7;
}

.dot.active {
    opacity: 1;
    background: #2e7d32;
}

/* Stats Section */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: white;
}

.stat-card {
    background: #f1f8e9;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #0f3b1f;
}

/* Social & Twitter */
.social-news {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background: #e8f5e9;
}

.social-buttons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icon {
    background: #2e7d32;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: #e4405f; }
.social-icon.facebook { background: #1877f2; }
.social-icon.linkedin { background: #0077b5; }

.social-icon:hover { opacity: 0.9; }

.twitter-feed {
    flex: 2;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.twitter-feed h3 {
    margin-bottom: 1rem;
    color: #0f3b1f;
}

.tweet {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

/* Visitor Badge */
.visitor-badge {
    text-align: center;
    margin: 2rem auto;
    background: #fff3e0;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    width: auto;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 450px;
    border-radius: 24px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

.form-group {
    margin: 1rem 0;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.modal-footer {
    text-align: center;
    margin-top: 1rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e2a1e;
    color: white;
    text-align: center;
    padding: 12px;
    z-index: 300;
}

.cookie-notice button {
    background: #2e7d32;
    border: none;
    padding: 6px 16px;
    margin-left: 12px;
    cursor: pointer;
    border-radius: 20px;
    color: white;
}

.cookie-notice a {
    color: #a5d6a7;
    margin-left: 12px;
}

/* Footer */
footer {
    background: #0f3b1f;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #0f3b1f;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .stats {
        flex-direction: column;
    }
}