/* Loans Hero Section */
.loans-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/loans-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.loans-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.loans-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.loans-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Loan Products Section */
.loan-products {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.loan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.loan-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.loan-card:hover {
    transform: translateY(-5px);
}

.loan-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.loan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.loan-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.loan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.loan-card ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.loan-card ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Loan Process Section */
.loan-process {
    padding: 80px 0;
}

.loan-process h2 {
    text-align: center;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step p {
    color: var(--text-light);
}

/* Eligibility Section */
.eligibility {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.eligibility h2 {
    text-align: center;
    margin-bottom: 40px;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.criteria-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.criteria-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.criteria-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.criteria-card p {
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.faq-item p {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .loans-hero {
        padding: 60px 0;
    }

    .loans-hero h1 {
        font-size: 2.5rem;
    }

    .loan-grid,
    .process-steps,
    .eligibility-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .loan-card,
    .step,
    .criteria-card,
    .faq-item {
        padding: 20px;
    }
} 