/* Finance Services Page Styles - RULE 304 Compliant */

/* Page Header */
.finance-header {
    background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
    color: var(--white);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.finance-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.finance-header-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.finance-services {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.finance-service-detail {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.finance-service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.finance-service-detail h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.finance-service-detail > p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.finance-feature-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.finance-feature-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.finance-feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.finance-feature-card:hover h4 {
    color: var(--white);
}

.finance-feature-card p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.finance-feature-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Section */
.finance-cta {
    background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.finance-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.finance-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.finance-cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.finance-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .finance-header {
        padding: 6rem 1.5rem 3rem;
    }

    .finance-header-content h1 {
        font-size: 2rem;
    }

    .finance-header-content p {
        font-size: 1rem;
    }

    .finance-service-detail {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .finance-service-detail h3 {
        font-size: 1.5rem;
    }

    .finance-service-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .finance-cta-content h2 {
        font-size: 1.8rem;
    }
}
