/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    background: linear-gradient(180deg, #f5f7f6 0%, #fff 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text-section {
    background: #fff;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-50px);
}

.hero-text-section h1 {
    font-size: 2rem;
    color: #005b2e;
    margin: 0 0 0.5rem 0;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.hero-text-section p {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: Arial, sans-serif;
}

.hero-cta {
    display: inline-block;
    background-color: #005b2e;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: #003018;
    transform: scale(1.05);
}

/* Loan Types Section */
.loan-types-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f0ee 100%);
}

.loan-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.loan-card i {
    font-size: 2.5rem;
    color: #005b2e;
    margin-bottom: 1rem;
}

.loan-card h3 {
    font-size: 1.5rem;
    color: #003018;
    margin: 0 0 1rem 0;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.loan-card p {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: Arial, sans-serif;
}

.loan-cta {
    display: inline-block;
    background-color: #005b2e;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.loan-cta:hover {
    background-color: #003018;
    transform: scale(1.05);
}

/* Disclaimer Section */
.disclaimer-section {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.disclaimer-section p {
    font-size: 1rem;
    color: #444;
    margin: 0 0 1rem 0;
    font-family: Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        margin: 0;
        max-width: 100%;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
        border-radius: 10px;
    }

    .hero-text-section {
        padding: 1.5rem;
        max-width: 90%;
        transform: translateY(-40px);
    }

    .hero-text-section h1 {
        font-size: 1.9rem;
    }

    .hero-text-section p {
        font-size: 1.1rem;
    }

    .hero-cta {
        padding: 0.75rem 1.8rem;
        font-size: 1.1rem;
    }

    .loan-types-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .loan-card {
        padding: 1.5rem;
    }

    .loan-card i {
        font-size: 2.2rem;
    }

    .loan-card h3 {
        font-size: 1.6rem;
    }

    .loan-card p {
        font-size: 1.05rem;
    }

    .disclaimer-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .disclaimer-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero-text-section {
        transform: translateY(-30px);
        padding: 1.2rem;
    }

    .hero-text-section h1 {
        font-size: 1.7rem;
    }

    .hero-text-section p {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 0.65rem 1.5rem;
        font-size: 1rem;
    }

    .loan-card {
        padding: 1.2rem;
    }

    .loan-card h3 {
        font-size: 1.5rem;
    }
}