:root {
    --primary-blue: #0A3D7C;
    /* Example blue from logo description - deep blue */
    --secondary-blue: #1A5AA6;
    --accent-color: #F4A261;
    /* Complementary warm tone if needed, or keeping it clean blue/white */
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    position: relative;
    overflow-x: hidden;
}


.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.status-badge {
    display: inline-block;
    background: rgba(10, 61, 124, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.contact-section p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 61, 124, 0.25);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 61, 124, 0.35);
}

.email-btn svg {
    transition: transform 0.3s ease;
}

.email-btn:hover svg {
    transform: scale(1.1);
}

footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    width: 100%;
}

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

/* Responsiveness */
@media (max-width: 640px) {
    .card {
        padding: 2rem 1.5rem;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content h2 {
        font-size: 1rem;
    }
}