* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f7fb;
    color: #1f2937;
}

.topbar {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo-area h1 {
    font-size: 28px;
    margin-bottom: 6px;
}

.logo-area p {
    font-size: 14px;
    opacity: 0.9;
}

.status-badge {
    background: #f59e0b;
    color: #111827;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 13px;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.hero {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0f172a;
}

.hero p {
    font-size: 16px;
    color: #4b5563;
}

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

.card {
    display: block;
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.card h3 {
    margin-bottom: 10px;
    color: #1e3a8a;
}

.card p {
    color: #4b5563;
    font-size: 14px;
}

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

.info-box {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.info-box h4 {
    margin-bottom: 8px;
    color: #0f172a;
}

.info-box p {
    color: #4b5563;
}

.footer {
    margin-top: 30px;
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}
