body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f8fc;
    color: #333;
}

.header {
    background-color: #f25a40;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.loan-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 5%;
    align-items: center;
}

.intro-image {
    flex: 1 1 400px;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.intro-text {
    flex: 1 1 400px;
}

.intro-text h2 {
    font-size: 1.8rem;
    color: #f25a40;
    margin-bottom: 15px;
}

.intro-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.loan-details {
    background-color: #ffffff;
    padding: 40px 5%;
}

.loan-details h2 {
    font-size: 1.8rem;
    color: #f25a40;
    margin-bottom: 20px;
}

.loan-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.loan-details li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #555;
}

.loan-details li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f25a40;
    font-weight: bold;
}

.loan-details p {
    color: #555;
}

.cta-section {
    background-color: #e0f2f1;
    text-align: center;
    padding: 50px 20px;
}

.cta-section h2 {
    font-size: 1.8rem;
    color: #f25a40;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 25px;
}

.cta-section .btn {
    background-color: #e26953;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-section .btn:hover {
    background-color: #f25a40;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background-color: #f0f0f0;
    color: #555;
}