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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2C3E50;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2C3E50;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2C3E50;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2D6A4F;
    color: white;
}

.btn-primary:hover {
    background-color: #245a42;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #64748b;
    color: white;
}

.btn-secondary:hover {
    background-color: #475569;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2D6A4F 0%, #34d399 100%);
    color: white;
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.logo {
    border-radius: 12px;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    margin-top: 2rem;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: #f8fafc;
}

.what-we-do h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.what-we-do > .container > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #64748b;
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    border-radius: 8px;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-6px);
}

.service h3 {
    padding: 2rem 2rem 1rem 2rem;
    color: #2D6A4F;
}

.service p {
    padding: 0 2rem 1.5rem 2rem;
    color: #64748b;
}

.service-image-placeholder {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #f8fafc;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-6px);
}

.product h3 {
    color: #2D6A4F;
    margin-bottom: 1rem;
}

.product p {
    color: #64748b;
    margin-bottom: 2rem;
}

.product-image-placeholder {
    height: 160px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D6A4F;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit h3 {
    color: #2D6A4F;
    margin-bottom: 1rem;
}

.benefit p {
    color: #64748b;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background-color: #f8fafc;
}

.target-audience h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B6B;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.audience-card h3 {
    color: #FF6B6B;
    margin-bottom: 1rem;
}

.audience-card p {
    color: #64748b;
}

/* Data Preview */
.data-preview {
    padding: 80px 0;
}

.data-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.insights-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.insight {
    text-align: center;
}

.insight h3 {
    color: #2D6A4F;
    margin-bottom: 1.5rem;
}

.data-visual-placeholder {
    height: 250px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.data-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.insight p {
    color: #64748b;
}

/* Market Coverage */
.market-coverage {
    padding: 80px 0;
    background-color: #f8fafc;
}

.market-coverage h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-text h3 {
    color: #2D6A4F;
    margin-bottom: 1.5rem;
}

.coverage-text p {
    color: #64748b;
    margin-bottom: 2rem;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D6A4F;
}

.stat-label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.coverage-map-placeholder {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.coverage-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background-color: #2C3E50;
    color: white;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #F1C40F;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details address {
    color: #e2e8f0;
    font-style: normal;
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: white;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .brand {
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.footer-brand .brand-name {
    color: white;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #a0aec0;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.link-group h4 {
    color: white;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #F1C40F;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .brand-name {
        font-size: 2rem !important;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-image-placeholder {
        height: 200px;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    .coverage-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-showcase {
        grid-template-columns: 1fr;
    }
    
    .data-visual-placeholder {
        height: 200px;
    }
    
    .coverage-map-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .brand {
        flex-direction: column;
        gap: 10px;
    }
    
    .brand-name {
        font-size: 1.75rem !important;
    }
    
    .features-grid,
    .benefits-grid,
    .audience-cards {
        grid-template-columns: 1fr;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
}