/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #004a99; /* Warna biru khas universitas */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-weight: 700;
}

header p {
    margin: 5px 0 0;
    font-weight: 300;
}

main h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #004a99;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.app-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 74, 153, 0.15);
}

.app-card .icon {
    font-size: 50px;
    color: #004a99;
    margin-bottom: 15px;
}

.app-card h3 {
    margin: 10px 0;
    font-size: 1.25rem;
    color: #003366;
}

.app-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 0.9rem;
}