:root {
    --iilm-blue: #003366;
    --iilm-maroon: #800020;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
}

.newsletter-header {
    background: linear-gradient(135deg, var(--iilm-blue) 0%, var(--iilm-maroon) 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 8px;
}
.logo img{
    width:100%;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.newsletter-date {
    font-size: 18px;
    opacity: 0.9;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.article {
    margin-bottom: 40px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-title {
    color: var(--iilm-maroon);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--iilm-blue);
    font-family: 'Playfair Display', serif;
}

.article-image {
    width: 100%;
    height:285px;
    background: #f0f0f0;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 8px;
}
.article-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mou-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.mou-section {
    background: #f8f8f8;
    padding: 20px;
    border-left: 4px solid var(--iilm-blue);
    border-radius: 0 8px 8px 0;
    margin: 0 !important;
}

.mou-title {
    color: var(--iilm-maroon);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.mou-list {
    list-style: none;
    margin-left: 20px;
}

    .mou-list li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 20px;
    }

        .mou-list li:before {
            content: '\2713';
            color: var(--iilm-blue);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

@media screen and (max-width: 768px) {
    .newsletter-title {
        font-size: 32px;
    }

    .logo {
        width: auto;
        height: auto;
    }

    .article-title {
        font-size: 20px;
    }

    .mou-title {
        font-size: 18px;
    }

    .content-wrapper {
        padding: 10px;
    }

    .article {
        padding: 15px;
    }

    .mou-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .newsletter-title {
        font-size: 24px;
    }

    .logo {
        width: auto;
        height: auto;
    }

    .newsletter-date {
        font-size: 14px;
    }

    .mou-section {
        padding: 15px;
    }

    .mou-list li {
        font-size: 14px;
    }
}


@media screen and (max-width: 768px) {
    [style*="columns: 2"] {
        columns: 1 !important;
    }

    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 20px !important;
    }

    [style*="padding"] {
        padding: 20px !important;
    }
}

@media screen and (max-width: 768px) {
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    [style*="padding"] {
        padding: 20px !important;
    }
}



@media screen and (max-width: 768px) {
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    [style*="padding"] {
        padding: 20px !important;
    }
}


/*Footer*/
.newsletter-footer {
    background: #2a4365;
    color: var(--light);
    padding: 2.5rem 3rem;
    text-align: center;
    border-top: 5px solid var(--primary);
    display: flex;
}

    .newsletter-footer p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        opacity: 0.9;
        color: #fff;
    }

    .newsletter-footer a {
        color: #e53e3e;
        text-decoration: none;
        font-weight: bold;
    }

    .newsletter-footer p:last-child {
        margin-bottom: 0;
    }

.socialmedia {
    width: 80%;
}
/*Footer*/