h1 {
            margin: 0;
            font-size: 2.8rem;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 8px;
        }

        section {
            padding: 40px 50px;
            border-bottom: 1px solid #eee;
        }

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

        .section-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            border-bottom: 3px solid #0052cc;
            padding-bottom: 12px;
        }

        .section-header h2 {
            margin: 0;
            font-size: 1.8rem;
            color: #003087;
        }

        .emoji {
            font-size: 2.2rem;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 18px;
        }

        .card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 82, 204, 0.15);
            border-color: #0052cc;
        }

        .card a {
            text-decoration: none;
            color: #003087;
            font-weight: 600;
            display: block;
        }

        .card a:hover {
            color: #0052cc;
        }

        footer {
            text-align: center;
            padding: 25px;
            color: #666;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .cards {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.3rem;
            }
        }
        /* ====================== CSS SUPLIMENTAR - PAGINA DEPARTAMENT IMIM ====================== */

.department-header {
    text-align: center;
    margin: 30px 0 40px 0;
}

.department-logo {
    max-width: 280px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-title {
    font-size: 1.65rem;
    color: #003087;
    margin: 15px 0 8px 0;
    font-weight: 600;
}

.main-description {
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 25px;
}

.program-section {
    background: #f8fbff;
    padding: 25px 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid #0052cc;
}

.program-section h3 {
    color: #003087;
    margin-top: 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
}

.program-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.program-list li:before {
    content: "▶";
    color: #0052cc;
    position: absolute;
    left: 0;
}

.staff-info {
    background: #f0f4ff;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.research-box {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.video-container {
    text-align: center;
    margin: 35px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .program-list {
        grid-template-columns: 1fr;
    }
    
    .department-logo {
        max-width: 220px;
    }
}