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

:root {
    --primary-color: #7DBB00;
    --secondary-color: #ffffff;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Language Buttons in Nav */
.nav-divider {
    color: var(--text-color);
    opacity: 0.3;
    margin: 0 10px;
}

.lang-btn {
    padding: 8px 12px;
    border: 1px solid var(--text-color);
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
    color: var(--text-color);
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: var(--light-bg);
}

.lang-btn.active {
    background: var(--primary-color);
    color: #000000;
    border-color: var(--primary-color);
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo {
    height: 80px;
    width: auto;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 0;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: #000000;
    padding: 60px 0;
    text-align: center;
}

.hero .motto {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #6DA300;
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--light-bg);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-bg);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Why Us Section */
.why-us {
    padding: 60px 0;
    background: var(--white);
}

.why-us h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    color: var(--primary-color);
    text-align: center;
}

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

.benefit {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit .icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--light-bg);
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    align-items: center;
}

.product.reverse {
    direction: rtl;
}

.product.reverse > * {
    direction: ltr;
}

.product-image img {
    width: 100%;
    max-width: 240px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0 auto;
    display: block;
}

.image-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 240px;
    margin: 0 auto;
}

.image-stack img {
    max-width: 100%;
}

.product-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.product-content ul {
    list-style: none;
    padding: 0;
}

.product-content li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.product-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-extra {
    margin-top: 20px;
}

.product-extra img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-cta {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-cta h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #000000;
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 968px) {
    .logo {
        height: 50px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero .motto {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a, .lang-btn {
        font-size: 0.85rem;
    }

    .nav-divider {
        display: none;
    }

    .product {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .product .product-content {
        order: 1;
    }

    .product .product-image {
        order: 2;
        margin-top: 20px;
    }

    .product.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        height: 50px;
    }

    .product {
        padding: 20px;
    }
}

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

section {
    scroll-margin-top: 80px;
}
