body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
}

header {
    background: #b71c1c;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    background: linear-gradient(135deg, #c62828, #ef5350);
    color: #fff;
    /* text-align: center; */
    padding: 60px 0;
}

.hero h2 {
    font-weight: 700;
}

.inquiry-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    color: #333;
}

.inquiry-form h4 {
    color: #c62828;
    font-weight: 700;
}

.form-label {
    color: #c62828;
    font-weight: 600;
}

.form-control,
.form-select {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
}

.btn-accent {
    background: #c62828;
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

.info-card {
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    padding: 35px;
    border-top: 5px solid #c62828;
    text-align: left;
}

.info-card h4 {
    color: #b71c1c;
    font-weight: 700;
}

.info-card ul li {
    color: #333;
    font-size: 15px;
}

.steps {
    background-color: #fff3f3;
    border-left: 5px solid #c62828;
    padding: 20px 25px;
    border-radius: 12px;
}

.steps h5 {
    color: #c62828;
    font-weight: 700;
}

.steps ol li {
    margin-bottom: 6px;
    color: #444;
}

footer {
    background: #b71c1c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#countdown div {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 12px;
    color: #fff;
}