:root {
    --primary-blue: #003366;
    --secondary-blue: #0055a4;
    --accent-orange: #e67e22;
    --text-dark: #333333;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f4f7f9;
    overflow-x: hidden;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/hero-closing.png') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8) 0%, rgba(0, 85, 164, 0.4) 100%);
}

.content-card {
    position: relative;
    max-width: 800px;
    margin: 2rem;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    max-width: 180px;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-orange);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.acknowledgments {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(0, 51, 102, 0.05);
    border-radius: 12px;
    font-style: italic;
}

.cta-container {
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 85, 164, 0.3);
}

footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .content-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
}
