body {
    background-color: #F5F9F3; /* Light green background */
    color: #1A1A1A; /* Dark text */
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

header {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #2E8B57;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 1rem;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.hero {
    background: #F5F9F3;
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.hero img.banner {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    color: #1A1A1A;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.button-primary {
    background-color: #2E8B57;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 48px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.button-primary:hover {
    background-color: #256D45;
}

.button-secondary {
    background-color: #1E90FF;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 48px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.button-secondary:hover {
    background-color: #1874CD;
}

.button-outline {
    background-color: transparent;
    color: #2E8B57;
    border: 2px solid #2E8B57;
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.button-outline:hover {
    background-color: #2E8B57;
    color: #FFFFFF;
}

a {
    color: #1E90FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

input, textarea {
    border: 1px solid #E0E0E0;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
    min-height: 48px;
}

input:focus, textarea:focus {
    border-color: #1E90FF;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-section {
    text-align: center;
}

.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.contact-intro {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.disclaimer {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.disclaimer.success {
    background: #E8F5E9;
    color: #2E7D32;
}

.disclaimer.error {
    background: #FFEBEE;
    color: #C62828;
}

.disclaimer.warning {
    background: #FFF8E1;
    color: #FF6D00;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: popIn 0.3s ease-out;
}

.popup-content p {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.popup-content p.success {
    color: #2E7D32;
}

.popup-content p.error {
    color: #C62828;
}

.popup-content p.warning {
    color: #FF6D00;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1A1A1A;
    transition: color 0.3s;
}

.close:hover {
    color: #2E8B57;
}

footer {
    background: #1A1A1A;
    color: #FFFFFF;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.footer-links a {
    color: #1E90FF;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: #2E8B57;
}

.contact-info p {
    margin: 0.5rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.product-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card h4 {
    color: #1A1A1A;
    margin: 1rem 0 0.5rem;
}

.product-card p {
    color: #555555;
    font-size: 0.9rem;
}

.product-image {
    max-width: 50%;
    height: auto;
    margin: 1rem auto;
    display: block;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1A1A1A;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .contact-section h2 {
        font-size: 1.8rem;
    }
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }
    .form-group label {
        font-size: 0.9rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
}