* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c24 100%);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.tagline {
    font-size: 0.9rem;
    color: #d4e7c5;
    font-style: italic;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(74, 124, 36, 0.7)),
                url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1600') center/cover;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Certifications Section */
.certifications {
    background: white;
    padding: 4rem 2rem;
    text-align: center;
}

.certifications h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

.cert-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cert-badge {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cert-item h3 {
    color: #2d5016;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Product Sections */
.product-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-section.alt-bg {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a7c24, #ff6b35);
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem 1rem;
    font-size: 1.2rem;
    color: #2d5016;
}

.product-origin {
    padding: 0 1rem 1rem 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c24 100%);
    color: white;
    padding: 4rem 2rem;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, #fff, #ff6b35);
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4e7c5;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #1a2f0f;
    color: #d4e7c5;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Professional Enhancements - Smaller Images & Better Layout */
.product-card img {
    height: 180px !important;
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 1.5rem !important;
}

.product-card {
    border: 1px solid #e0e0e0;
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.product-origin {
    color: #2d5016;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Add subtle animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    animation: fadeIn 0.5s ease-out;
}

/* Professional typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Better spacing */
.hero {
    padding: 5rem 2rem;
}

.certifications {
    padding: 3rem 2rem;
}

.product-section {
    padding: 3rem 2rem;
}

/* Professional shadows */
.cert-item {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}