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

body {
    font-family: 'Georgia', serif;
    color: #333;
    line-height: 1.6;
}

/* Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
    background-color: #225026;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background-color: transparent;
    border: 1px solid #555;
    color: white;
    padding: 5px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: #4a7c59;
    border-color: #4a7c59;
}

.lang-btn:hover {
    background-color: #4a7c59;
    border-color: #4a7c59;
}

/* Header and Navigation */
header {
    background-color: #f5f5f0;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 24px;
    color: #2c2c2c;
    font-weight: bold;
}

.logo-text p {
    font-size: 12px;
    color: #666;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a7c59;
}

/* Search Box */
.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 25px;
    overflow: hidden;
    background-color: white;
}

.search-box input {
    border: none;
    padding: 10px 20px;
    outline: none;
    width: 250px;
}

.search-btn {
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background-color: #f5f5f0;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    color: #2d5f3f;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* CTA Button */
.cta-button {
    background-color: #2d5f3f;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #234a31;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 40px 60px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    color: #2d5f3f;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #333;
}

/* Products Section */
.products-section {
    background-color: #2d5f3f;
    padding: 80px 0;
    text-align: center;
}

.products-content {
    color: white;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button-white {
    background-color: white;
    color: #2d5f3f;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button-white:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #2d5f3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #4a7c59;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .stats-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}