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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header */
.header {
    background-color: #2d5016;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav a:hover {
    color: #a3d977;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a7c3a 0%, #2d5016 100%);
    color: white;
    padding: 4rem 0;
}

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

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: #a3d977;
    color: #2d5016;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #8bc34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Features */
.features {
    padding: 4rem 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2d5016;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: #f5f9f2;
    transition: transform 0.3s;
}

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

.feature i {
    font-size: 2.5rem;
    color: #4a7c3a;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: #2d5016;
}

/* Products */
.products {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2d5016;
}

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

.product {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product h3, .product p, .price {
    padding: 0 1rem;
}

.product h3 {
    margin: 1rem 0 0.5rem;
    color: #2d5016;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a7c3a;
    margin: 1rem 0;
}

.btn-small {
    display: block;
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 10px;
    background-color: #4a7c3a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-small:hover {
    background-color: #2d5016;
}

/* Amazon Section */
.amazon {
    padding: 3rem 0;
    background-color: #232f3e;
    color: white;
    text-align: center;
}

.amazon h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.amazon p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.amazon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ff9900;
    color: #232f3e;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.amazon-badge i {
    font-size: 1.5rem;
}

/* Telegram Section */
.telegram {
    padding: 4rem 0;
    background-color: #0088cc;
    color: white;
}

.telegram .container {
    max-width: 800px;
    text-align: center;
}

.telegram h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.telegram ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.telegram li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.telegram li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a3d977;
}

.telegram .btn {
    background-color: white;
    color: #0088cc;
}

.telegram .btn:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

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

.footer-section p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

/* Legal Section */
.legal {
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.legal h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal h3 {
    color: #a3d977;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.legal p, .legal a {
    color: #ccc;
    line-height: 1.8;
}

.legal a:hover {
    color: #a3d977;
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .telegram ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
}
