/* Enhanced FAQ Accordion Styling */

/* Accordion Container */
.accordion {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

/* Accordion Items */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

/* Accordion Button/Header */
.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 17px;
    color: #050748;
    background: linear-gradient(to right, #f8f9ff 0%, #ffffff 100%);
    border-left: 4px solid #ff1f8e;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #ff1f8e;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 18px;
    transition: all 0.3s ease;
    color: #ff1f8e;
}

/* Accordion Body */
.accordion-body {
    padding: 20px 25px 25px;
    background: #ffffff;
}

.data-reqs p {
    margin-bottom: 15px;
    color: #6a6a8e;
}

.data-reqs ul, .data-reqs ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.data-reqs ul li, .data-reqs ol li {
    margin-bottom: 8px;
    color: #6a6a8e;
    position: relative;
}

.data-reqs ul li::before {
    content: "•";
    color: #ff1f8e;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Style for the second accordion */
#accordionExample-a .accordion-item {
    border-radius: 8px !important;
    border: 1px solid #f0f0f0;
}

#accordionExample-a .accordion-button {
    border-left: 4px solid #2a89ea;
}

#accordionExample-a .accordion-button:not(.collapsed) {
    color: #2a89ea;
}

/* Hover effects */
.accordion-button:hover {
    background-color: #f8f9ff;
}

.accordion-item:hover {
    transform: translateY(-2px);
}

/* FAQ Category Title Styles */
.faq-category-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.faq-category-title h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.faq-cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(to right, #ffbd84 0%, #ff1f8e 100%);
    border-radius: 50%;
    margin-right: 15px;
}

.faq-cat-icon i {
    color: #fff;
    font-size: 20px;
}

#accordionExample-a + .faq-category-title .faq-cat-icon {
    background: linear-gradient(135deg, #70e4e8 0%, #2a89ea 100%);
}

.col-md-6:nth-child(2) .faq-cat-icon {
    background: linear-gradient(135deg, #70e4e8 0%, #2a89ea 100%);
}

/* CTA Card Styles */
.cta-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #ff1f8e;
}

.cta-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #5254a0;
}

.cta-card p {
    font-size: 17px;
    color: #6a6a8e;
    max-width: 600px;
    margin: 0 auto;
} 