<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: 'Roboto', 'SF Pro', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.mali-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.mali-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.mali-header .mali-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.company-logo {
    width: 180px;
    height: 60px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.mali-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.mali-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.mali-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.mali-nav a:hover::after,
.mali-nav a.active::after {
    width: 100%;
}

.mali-nav a:hover,
.mali-nav a.active {
    color: #0066cc;
}

.mali-mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.mali-services-hero {
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
}

.mali-services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mali-services-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Services Sections */
.mali-loan-services,
.mali-insurance-services {
    padding: 80px 0;
}

.mali-loan-services {
    background: #f8f9fa;
}

.mali-loan-services h2,
.mali-insurance-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.mali-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.mali-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.mali-service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.mali-service-card h3 {
    padding: 20px 20px 10px;
    color: #0066cc;
    font-size: 24px;
}

.mali-service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.mali-service-card .mali-button {
    margin: 0 20px 20px;
}

/* Advantages Section */
.mali-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-advantages h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.mali-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mali-advantage-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mali-advantage-card:hover {
    transform: translateY(-5px);
}

.mali-advantage-card i {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 20px;
}

.mali-advantage-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Application Process Section */
.mali-application-process {
    padding: 80px 0;
}

.mali-application-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.mali-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mali-process-step {
    text-align: center;
    position: relative;
}

.mali-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #0066cc;
}

.mali-step-number {
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.mali-process-step h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

/* FAQ Section */
.mali-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.mali-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mali-faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mali-faq-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* CTA Section */
.mali-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
}

.mali-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mali-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.mali-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mali-button-primary {
    background: #ffd700;
    color: #333;
}

.mali-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.mali-footer {
    background: #333;
    color: #fff;
    padding: 80px 0 20px;
}

.mali-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.mali-footer-logo .company-logo {
    margin-bottom: 20px;
}

.mali-footer-logo p {
    color: #999;
}

.mali-footer-links h3,
.mali-footer-contact h3 {
    margin-bottom: 20px;
    color: #ffd700;
}

.mali-footer-links ul {
    list-style: none;
}

.mali-footer-links a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.mali-footer-links a:hover {
    color: #ffd700;
}

.mali-footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mali-footer-contact i {
    color: #ffd700;
}

.mali-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mali-social-link {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.mali-social-link:hover {
    color: #ffd700;
}

.mali-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mali-header .mali-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .mali-nav {
        display: none;
    }

    .mali-mobile-menu {
        display: block;
    }

    .mali-services-hero {
        padding: 120px 0 60px;
    }

    .mali-services-hero h1 {
        font-size: 36px;
    }

    .mali-services-hero p {
        font-size: 18px;
    }

    .mali-faq-grid {
        grid-template-columns: 1fr;
    }

    .mali-process-step:not(:last-child)::after {
        display: none;
    }
} </pre></body></html>