/* General body and layout */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: #333; /* Dark grey for professional text */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    background-color: white;
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 680px;
    width: 100%;
    margin-top: 2rem;
}

header h1 {
    font-size: 2.5rem; /* Increased size for a bold, professional look */
    color: #3e0066; /* Deep purple for elegance */
    font-weight: 700;
    margin-bottom: 1.2rem;
}

header p {
    font-size: 1.2rem;
    color: #555;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Timer section */
#timer-section h2 {
    font-size: 1.4rem; /* Larger, cleaner font size */
    color: #333;
    font-weight: 600; /* Bold heading */
    margin-bottom: 1rem;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.time-box {
    background-color: #f4f4f4;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}

.time-box:hover {
    transform: translateY(-3px);
}

.time-box span {
    font-size: 1.8rem;
    color: #3e0066;
    font-weight: 700;
}

.time-box p {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* FAQ Section */
#faq {
    margin: 2rem 0;
}

#faq h2 {
    font-size: 1.5rem; /* Larger and bold for a professional look */
    color: #3e0066;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    text-align: left;
    background-color: #f4f4f4;
    border: none;
    border-radius: 8px;
    color: #333;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.faq-question:hover {
    background-color: #ececec;
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #f9f9f9;
    border-left: 4px solid #3e0066;
    border-radius: 8px;
    margin-top: 0.5rem;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Notification form */
#notify p {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

#notify input[type="text"],
#notify input[type="email"] {
    padding: 0.65rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 160px; /* Adjusted for compact, in-line layout */
}

#notify label {
    font-size: 0.9rem;
    color: #555;
}

#notify input[type="checkbox"] {
    margin-right: 0.5rem;
}

#notify button {
    padding: 0.65rem 1.2rem;
    background-color: #3e0066;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#notify button:hover {
    background-color: #2b004d;
}

#disclaimer {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
}

#success-message {
    font-size: 1rem;
    color: #3e0066;
    margin-top: 1rem;
    display: none;
}

/* Footer */
footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #777;
}

footer a {
    color: #3e0066;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}