* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}
/* Navigation */
nav {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
nav .logo img {
    height: 28px;
    width: auto;
    display: block;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
nav a:hover {
    color: #00ff88;
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #0d3d1f 100%);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(0,255,136,0.05)"/><circle cx="80" cy="80" r="20" fill="rgba(0,255,136,0.03)"/></svg>');
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero .tagline {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 2rem;
    font-weight: 500;
}
.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}
.cta-button {
    display: inline-block;
    background: #00ff88;
    color: #1a472a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #00ff88;
}
.cta-button:hover {
    background: transparent;
    color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,255,136,0.3);
}
/* About Section */
.about {
    padding: 4rem 2rem;
    background: #f8f9fa;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #1a472a;
    margin-bottom: 2rem;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-text h3 {
    color: #2d5a3d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.about-text p {
    margin-bottom: 1rem;
    color: #555;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    color: #00ff88;
    font-weight: bold;
}
.stat-label {
    color: #555;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
/* Services Section */
.services {
    padding: 4rem 2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #00ff88;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.service-card h3 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.service-card ul {
    list-style: none;
    color: #555;
    font-size: 0.95rem;
}
.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.service-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}
/* Why Choose Section */
.why-choose {
    padding: 4rem 2rem;
    background: #f8f9fa;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.benefit-icon {
    font-size: 2rem;
    color: #00ff88;
    flex-shrink: 0;
}
.benefit-text h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
}
.benefit-text p {
    color: #555;
    font-size: 0.95rem;
}
/* Compliance Section */
.compliance {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
}
.compliance .section-title {
    color: white;
}
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.compliance-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0,255,136,0.3);
}
.compliance-item label {
    color: #00ff88;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.compliance-item span {
    color: rgba(255,255,255,0.9);
    display: block;
}
/* Contact Section */
.contact {
    padding: 4rem 2rem;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info h3 {
    color: #1a472a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.contact-item {
    margin-bottom: 1.5rem;
}
.contact-item label {
    color: #00ff88;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.contact-item p {
    color: #555;
    font-size: 1.1rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
/* Footer */
footer {
    background: #1a472a;
    color: white;
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #00ff88;
}
/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .about-content, .services-grid, .compliance-grid {
        grid-template-columns: 1fr;
    }
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .benefits {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
}
