:root {
    --primary-blue: #2A5294;
    --dark-blue: #202E5B;
    --bg-gray: #f4f7f9;
    --card-white: #ffffff;
    --text-dark: #333333;
    --border-gray: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-gray);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Full Width Section for News */
.news-section {
    grid-column: 1 / -1;
    background: var(--card-white);
    border-left: 5px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: 4px;
}

.card {
    background: var(--card-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    color: var(--primary-blue);
    margin-top: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon Placeholder Style */
.icon {
    width: 24px;
    height: 24px;
    background-color: var(--dark-blue);
    display: inline-block;
    mask-size: contain;
    mask-repeat: no-repeat;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-gray);
}

li:last-child {
    border-bottom: none;
}

.link-btn {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.role {
    font-size: 0.85rem;
    color: #666;
}

/* Staggered animation delay for cards */
.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4) {
    animation-delay: 0.4s;
}

.card:nth-child(5) {
    animation-delay: 0.5s;
}

.card:nth-child(6) {
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}
