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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #4A5568;
    background-color: #FFFFFF;
}

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

/* Header */
.header {
    background: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    flex-shrink: 0;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #4A5568;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: #4A5568;
    color: white;
}

.cta-button.primary:hover {
    background: #2D3748;
}

.cta-button.secondary {
    background: transparent;
    color: #4A5568;
    border: 2px solid #4A5568;
}

.cta-button.secondary:hover {
    background: #4A5568;
    color: white;
}

.hero-features {
    display: flex;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #718096;
}

.feature-icon {
    font-size: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #F7FAFC;
    text-align: center;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 60px;
}

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

.step {
    text-align: center;
    padding: 40px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4A5568;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 16px;
}

.step p {
    color: #718096;
    line-height: 1.6;
}

/* Services */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: #F7FAFC;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 16px;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
}

/* Products */
.products {
    padding: 80px 0;
    background: #F7FAFC;
    text-align: center;
}

.products h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    text-align: center;
    position: relative;
}

.product-card.featured {
    border: 2px solid #4A5568;
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 16px;
}

.price span {
    font-size: 18px;
    color: #718096;
}

.product-card p {
    color: #718096;
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
}

.product-card li {
    color: #718096;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-card li:before {
    content: "✓";
    color: #4A5568;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-button {
    background: #4A5568;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background: #2D3748;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    text-align: center;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 32px 20px;
}

.feature h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 16px;
}

.feature p {
    color: #718096;
    line-height: 1.6;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: #F7FAFC;
    text-align: center;
}

.service-areas h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 60px;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.areas-text p {
    color: #718096;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.area {
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    font-weight: 600;
    color: #4A5568;
    text-align: center;
}

.areas-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.areas-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 60px;
}

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

.testimonial {
    background: #F7FAFC;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.testimonial p {
    color: #4A5568;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.customer {
    color: #718096;
    font-weight: 600;
}

/* Environmental */
.environmental {
    padding: 80px 0;
    background: #F7FAFC;
    text-align: center;
}

.env-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.env-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 24px;
}

.env-text p {
    color: #718096;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.env-text ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.env-text li {
    color: #718096;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.env-text li:before {
    content: "🌱";
    position: absolute;
    left: 0;
}

.env-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.env-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 60px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 8px;
}

.contact-item a {
    color: #4A5568;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.contact-item a:hover {
    color: #2D3748;
}

.contact-item p {
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #4A5568;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 600;
}

.footer-description {
    color: #CBD5E0;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-column a {
    display: block;
    color: #CBD5E0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #718096;
}

.footer-bottom p {
    color: #CBD5E0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .steps-grid,
    .services-grid,
    .products-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .areas-content,
    .env-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}