body {
    font-family: system-ui;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #cec9c5, #d9ccd2);
    color: #fff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.title {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.title span {
    color: #ffd700;
}


/* Countdown Box */
#countdown-box {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.cdi {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 15px;
    min-width: 90px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cdi span {
    font-size: 4rem;
    color: #ffd700;
}

.cdi-lbl {
    font-size: 2rem;
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Info Content */
.info-content {
    text-align: left;
    padding: 25px;
}

.info-content section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.info-content h2, .info-content h3 {
    color: #312e1d;
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-content p {
    font-size: 1.8rem;
    line-height: 2.2;
    font-weight: 400;
    color: #2b0303;
}
.info-content b {
    font-size: 1.6rem;
    color: rgb(27, 3, 114);
}

.dynamic-days {
    font-weight: bold;
    color: #0a1a59;
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    .title {
        font-size: 3rem;
    }
    #countdown-box {
        flex-wrap: wrap;
        gap: 10px;
    }
    .cdi {
        min-width: 80px;
        font-size: 1.5rem;
    }
    .cdi span {
        font-size: 3rem;
    }
    .info-content h2, .info-content h3 {
        font-size: 2rem;
    }
    .info-content p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.8rem;
    }
    #countdown-box {
        flex-direction: column;
        align-items: center;
    }
    .cdi {
        width: 100px;
    }
    .info-content h2, .info-content h3 {
        font-size: 1.8rem;
    }
    .info-content p {
        font-size: 1.5rem;
    }
    .info-content b {
        font-size: 1.6rem;
    }
    .info-content {
        text-align: left;
        padding: 25px 0;
    }
}
section li{
    font-size: 2rem !important;
    padding: 1rem;
    color: #2d2c1b;
}
.info-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section img {
    width: 80%;
    max-width: 600px;
}

@media (max-width: 768px) {
    section img {
        width: 95%;
    }
}

/* FAQ Section Styling */
#durga-puja-faq {
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#durga-puja-faq h2 {
    text-align: center;
    font-size: 28px;
    color: #b71c1c; /* Durga Puja red */
    margin-bottom: 15px;
}

/* FAQ Items */
.faq-item {
    background: white;
    margin: 10px 0;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.faq-item:hover {
    transform: scale(1.02);
}

.faq-item h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item p,
.faq-item ul {
    font-size: 16px;
    color: #444;
    margin-top: 8px;
    display: none; /* Initially hidden */
}

.faq-item ul {
    padding-left: 20px;
}

.faq-item ul li {
    list-style: circle;
    margin-bottom: 5px;
}

/* Expand/Collapse Icon */
.faq-item h3::after {
    content: "➕";
    font-size: 18px;
    color: #b71c1c;
    transition: transform 0.3s ease-in-out;
}

/* Active State */
.faq-item.active h3::after {
    content: "➖";
    transform: rotate(180deg);
}

.faq-item.active p,
.faq-item.active ul {
    display: block;
}

/* Responsive Design */
@media (max-width: 600px) {
    #durga-puja-faq {
        padding: 15px;
    }

    #durga-puja-faq h2 {
        font-size: 24px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-item p,
    .faq-item ul {
        font-size: 15px;
    }
}
