:root {
    --primary: #003366; /* Deep Trust Blue */
    --accent: #00a8e8;  /* Medical Tech Blue */
    --text: #333;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), 
                url('https://images.unsplash.com/photo-1581093458791-9f3c3250bb8b?auto=format&fit=crop&q=80&w=1920') no-repeat center center fixed;
    background-size: cover;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.legacy-ribbon {
    position: absolute;
    top: 0;
    width: 100%;
    background: #d4af37; /* Gold for 55 years */
    color: #000;
    padding: 10px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index:1000;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 800px;
    width: 90%;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.logo span { color: var(--accent); }

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
p { font-size: 1.1rem; line-height: 1.6; opacity: 0.9; }

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
}

.time-box {
    background: rgba(0,0,0,0.3);
    padding: 15px 25px;
    border-radius: 10px;
    min-width: 80px;
}

.time-box span { font-size: 2rem; font-weight: bold; display: block; }

.cta-section {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    display: inline-block;
}

.badges {
    margin-top: 2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.7;
}