<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Header styles */
header {
    background-color: #003366;
    color: #fff;
    padding: 1rem 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* home section styles */
#home, #about-home, #services-home, #why-choose-us-home, #loan-calculator-home, #contact-home, #home-loans-home, #construction-loans-home, #improvement-loans-home, #resale-loans-home {
    background-color: #f4f4f4;
    text-align: center;
    padding: 4rem 0;
}

#home h1, #about-home h1, #services-home h1, #why-choose-us-home h1, #loan-calculator-home h1, #contact-home h1, #home-loans-home h1, #construction-loans-home h1, #improvement-loans-home h1, #resale-loans-home h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.flex-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    img{
        width: 300px;
    }
}
#our-team .team-grid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 500px;
}
/* Section styles */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Button styles */
.btn, .cta-button {
    display: inline-block;
    background-color: #003366;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover, .cta-button:hover {
    background-color: #002244;
}

/* Grid layouts */
.services-grid, .advantages-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Form styles */
form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer styles */
footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 0.5rem;
    }

    .services-grid, .advantages-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Specific page styles */

/* Loan calculator */
#calculator {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

#result {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #e6f3ff;
    border-radius: 4px;
}

#result.hidden {
    display: none;
}

/* FAQ styles */
.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    color: #003366;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background-color: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Service pages */
.service-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Why choose us page */
.advantage-item {
    text-align: center;
}

.advantage-item img {
    max-width: 100px;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for better keyboard navigation */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid #003366;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    header, footer, nav, .cta-button {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1 {
        font-size: 18pt;
    }

    h2 {
        font-size: 16pt;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    .container {
        width: 100%;
        max-width: none;
    }
}

</pre></body></html>