body {
    font-family: 'Kanit', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    background: white;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
}

h1 {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.time-box {
    background-color: #007bff;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.time-box span:first-child {
    font-size: 2.5em;
    font-weight: 700;
}

.time-box .label {
    font-size: 0.8em;
    text-transform: uppercase;
    margin-top: 5px;
}

.contact-info {
    margin-top: 40px;
    font-size: 1em;
    color: #555;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9em;
}