/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner-section {
    position: relative;
    background: url('https://thestaging.digitalsampark.com/wp-content/uploads/2024/10/istockphoto-1346492551-1024x1024-1.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-btn {
    background-color: #332986;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e9ecf6;
    color: #332986;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    transition: opacity 0.3s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Payment Button Styles */
.pay-btn {
    background-color: #332986;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pay-btn:hover {
    background-color: #e9ecf6;
    color: #332986;
}

/* Countdown Styles */
.countdown-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.countdown-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-item {
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
}

/* Event Details Styles */
.event-details-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.event-detail-item {
    margin-bottom: 15px;
}

.event-detail-item h3 {
    font-weight: bold;
    margin: 0;
}

.event-detail-item p {
    margin: 5px 0 0;
}

/* Why Attend, Speakers, About, FAQ, Testimonials Styles */
h2 {
    text-align: center;
    margin: 20px 0;
}

.why-attend-section, .speakers-section, .about-section, .faq-section, .testimonials-section {
    padding: 20px;
    margin: 20px 0;
    background-color: #f2f2f2;
    border-radius: 5px;
}

/* Accordion Styles */
.accordion {
    background-color: #f2f2f2;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-button {
    background-color: #f2f2f2;
    color: #333;
    cursor: pointer;
    padding: 15px;
    text-align: left;
    outline: none;
    font-size: 16px;
    width: 100%;
    border: none;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #ddd;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 15px;
}

/* Testimonials Styles */
.testimonials-section {
    padding: 20px;
    background-color: #fff;
}

.testimonials blockquote {
    border-left: 5px solid #F37254;
    margin: 10px 0;
    padding: 10px 20px;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .banner-section {
        height: 300px;
    }

    .event-details-section {
        padding: 15px;
    }

    .countdown-item {
        font-size: 14px;
    }

    .pay-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .modal-content {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 250px;
    }

    .pay-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .countdown-item {
        font-size: 12px;
    }

    .event-detail-item h3 {
        font-size: 16px;
    }

    .event-detail-item p {
        font-size: 14px;
    }
}
