/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1F2937;
    line-height: 1.6;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
    margin-bottom: 20px;
}

/* Section Padding */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero-section {
    background-color: #F8FAFC;
    padding: 100px 0;
}

.hero-subtext {
    font-size: 18px;
    color: #4B5563;
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-image {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Services Section */
.services-section {
    background-color: #FFFFFF;
}

.section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #4B5563;
    max-width: 700px;
    margin: 0 auto 50px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 40px;
    color: #2563EB;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #4B5563;
}

/* Showcase Section */
.showcase-section {
    background-color: #F8FAFC;
}

.showcase-image {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Stats Section */
.stats-section {
    background-color: #FFFFFF;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
}

.stat-icon {
    font-size: 40px;
    color: #2563EB;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    color: #4B5563;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background-color: #2563EB;
    color: #FFFFFF;
    padding: 100px 0;
}

.cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 18px;
    color: #E5E7EB;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn-primary {
    background-color: #F59E0B;
    border-color: #F59E0B;
    color: #FFFFFF;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-outline-primary {
    color: #2563EB;
    border-color: #2563EB;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #2563EB;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.cta-button {
    font-size: 18px;
    padding: 14px 32px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .showcase-section .row > div:first-child {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}