.countdown-container {
    max-width: 1230px!important;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-top: 1px solid #B70745;
}
.countdown-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.text-section {
    flex: 1; 
    color: #B70745;
}
#mainTitle{
    color: #B70745;
}
.text-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.text-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}
.color-white{
    color:#fff;
}
.countdown-timer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.time-unit {
    backdrop-filter: blur(10px);
    border: 2px solid #B70745;
    border-radius: 12px;
    padding: 20px 15px;
    min-width: 100px;
    text-align: center;
}
.time-value {
    font-size: 2.5em;
    font-weight: 700;
    color: #B70745;
    display: block;
    line-height: 1;
}
.time-label {
    font-size: 0.85em;
    color: #B70745;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}
.countdown-expired {
    text-align: center;
    color: white;
    font-size: 1.3em;
    font-weight: 600;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}