/* 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-updates-hero {
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
}

.mali-updates-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mali-updates-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Announcements Section */
.mali-announcements {
    padding: 80px 0;
}

.mali-announcements h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.mali-announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.mali-announcement-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-announcement-card:hover {
    transform: translateY(-5px);
}

.mali-announcement-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.mali-announcement-content {
    padding: 30px;
}

.mali-date {
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.mali-announcement-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.mali-announcement-content p {
    color: #666;
    margin-bottom: 20px;
}

/* Industry News Section */
.mali-industry-news {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-industry-news h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.mali-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mali-news-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mali-news-card:hover {
    transform: translateY(-5px);
}

.mali-category {
    display: inline-block;
    padding: 5px 15px;
    background: #0066cc;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.mali-news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.mali-news-content p {
    color: #666;
    margin-bottom: 20px;
}

.mali-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.mali-link:hover {
    color: #004999;
}

/* Policy Updates Section */
.mali-policy-updates {
    padding: 80px 0;
}

.mali-policy-updates h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.mali-policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mali-policy-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-policy-card:hover {
    transform: translateY(-5px);
}

.mali-policy-card i {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 20px;
}

.mali-policy-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.mali-policy-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Events Section */
.mali-events {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-events h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.mali-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.mali-event-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-event-card:hover {
    transform: translateY(-5px);
}

.mali-event-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.mali-event-content {
    padding: 30px;
}

/* Newsletter Section */
.mali-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    text-align: center;
}

.mali-newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mali-newsletter p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.mali-newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.mali-newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
}

.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;
    border: none;
    cursor: pointer;
}

.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-updates-hero {
        padding: 120px 0 60px;
    }

    .mali-updates-hero h1 {
        font-size: 36px;
    }

    .mali-updates-hero p {
        font-size: 18px;
    }

    .mali-announcement-grid,
    .mali-events-grid {
        grid-template-columns: 1fr;
    }

    .mali-newsletter-form {
        flex-direction: column;
    }

    .mali-newsletter-form input,
    .mali-newsletter-form button {
        width: 100%;
    }
} 