/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #F8FAFC;
    color: #1F2937;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

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

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

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.hero-section h1 {
    max-width: 600px;
}

.hero-section .subtext {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Why Finance Section */
.why-finance-section {
    background-color: #FFFFFF;
}

.why-finance-section h2 {
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #1F2937;
}

.feature-list i {
    color: #F59E0B;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
}

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

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

.service-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #2563EB;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #2563EB;
    font-size: 24px;
}

.card-link {
    color: #2563EB;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #1E40AF;
}

.card-link:hover i {
    transform: translateX(3px);
}

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

.stats-section h2,
.stats-section .section-subtitle {
    color: #FFFFFF;
}

.stats-section .section-subtitle {
    opacity: 0.9;
}

.stat-item {
    padding: 30px 15px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background-color: #F8FAFC;
}

.cta-box {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    color: #1F2937;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta {
    background-color: #F59E0B;
    color: #FFFFFF;
    border: none;
}

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

.btn-secondary {
    background-color: #FFFFFF;
    color: #2563EB;
    border: 1px solid #2563EB;
}

.btn-secondary:hover {
    background-color: #EFF6FF;
    color: #1E40AF;
    border-color: #1E40AF;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }
    
    .hero-section h1,
    .hero-section .subtext {
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-finance-section .col-lg-6 {
        order: initial !important;
    }
    
    .why-finance-section img {
        margin-bottom: 40px;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}