/* 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-loans-hero {
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
}

.mali-loans-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mali-loans-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Loan Products Section */
.mali-loan-products {
    padding: 80px 0;
}

.mali-loan-products h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.mali-loan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.mali-loan-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mali-loan-card:hover {
    transform: translateY(-5px);
}

.mali-loan-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.mali-loan-content {
    padding: 30px;
}

.mali-loan-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.mali-loan-content p {
    color: #666;
    margin-bottom: 20px;
}

.mali-loan-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.mali-loan-content li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.mali-loan-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
}

/* Requirements Section */
.mali-requirements {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-requirements h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.mali-req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mali-req-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mali-req-card:hover {
    transform: translateY(-5px);
}

.mali-req-card i {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 20px;
}

.mali-req-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.mali-req-card p {
    color: #666;
}

/* Interest Rates Section */
.mali-interest-rates {
    padding: 80px 0;
}

.mali-interest-rates h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.mali-rates-table {
    overflow-x: auto;
}

.mali-rates-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mali-rates-table th,
.mali-rates-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.mali-rates-table th {
    background: #0066cc;
    color: #fff;
    font-weight: 500;
}

.mali-rates-table tr:last-child td {
    border-bottom: none;
}

.mali-rates-table tr:hover td {
    background: #f8f9fa;
}

/* Payment Methods Section */
.mali-payment-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-payment-methods h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.mali-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mali-payment-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mali-payment-card:hover {
    transform: translateY(-5px);
}

.mali-payment-card i {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 20px;
}

.mali-payment-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.mali-payment-card p {
    color: #666;
}

/* CTA Section */
.mali-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    text-align: center;
}

.mali-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mali-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.mali-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    color: #0066cc;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mali-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* 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-loans-hero {
        padding: 120px 0 60px;
    }

    .mali-loans-hero h1 {
        font-size: 36px;
    }

    .mali-loans-hero p {
        font-size: 18px;
    }

    .mali-loan-grid {
        grid-template-columns: 1fr;
    }

    .mali-rates-table {
        margin: 0 -20px;
    }

    .mali-rates-table table {
        border-radius: 0;
    }
} 