* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 40px;
}

.status-badge {
    display: inline-block;
    background: #e2e8f0;
    color: #64748b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

h1 span {
    color: #2563eb; /* Academic Blue */
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
}

/* Progress Bar Decoration */
.progress-container {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-bar {
    width: 65%;
    height: 100%;
    background: #2563eb;
    border-radius: 10px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.contact-info {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: #0f172a;
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    p { font-size: 1rem; }
}