:root {
    /* Color Palette derived from Human Solutions Hub Logo */
    --primary-color: #007D8C; /* Dark Teal (Main Brand Color) */
    --secondary-color: #F8F5EE; /* Light Background */
    --accent-color-orange: #F5812B; /* Orange (Accent/Pop) */
    --accent-color-green: #2ECC71; /* Green (Growth/Success) */
    --text-color: #333;
    --font-family: 'Montserrat', sans-serif;
}

/* General Reset and Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 800px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header & Branding */
.header {
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 15px;
}

.logo-container img {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
}

.header h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.slogan {
    font-size: 1.3em;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color-green);
    display: inline-block;
}

/* Main Content */
.content h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tagline {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

.content p {
    margin-bottom: 25px;
}

/* Countdown Section */
.countdown {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.countdown-item span {
    display: block;
    font-size: 3em;
    font-weight: 700;
    color: var(--accent-color-orange);
    line-height: 1;
}

.countdown-item label {
    font-size: 0.8em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-top: 5px;
}

/* Notification Form */
.notify-section h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: var(--primary-color);
}

/* UPDATED SELECTOR */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* UPDATED SELECTOR */
.notify-form input[type="email"] {
    padding: 12px 15px;
    width: 60%;
    max-width: 350px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s;
}

/* UPDATED SELECTOR */
.notify-form input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* UPDATED SELECTOR */
.notify-form button {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.1s;
}

/* UPDATED SELECTOR */
.notify-form button:hover {
    background-color: #005f6b;
}

/* UPDATED SELECTOR */
.notify-form button:active {
    transform: scale(0.98);
}

.message {
    color: var(--accent-color-green);
    font-weight: 700;
    margin-top: 10px;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
    color: #6c757d;
}

/* Responsive Design (Mobile-Friendly) */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .slogan {
        font-size: 1em;
    }

    .logo-container img {
        max-width: 180px;
    }

    .content h2 {
        font-size: 1.5em;
    }

    .countdown {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .countdown-item span {
        font-size: 2.5em;
    }
    
    /* UPDATED SELECTOR */
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    
    /* UPDATED SELECTOR */
    .notify-form input[type="email"], .notify-form button {
        width: 100%;
        max-width: 300px;
    }
}