
.faq-showcase-wrapper {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

/* The light blue display stand */
.faq-display-stand {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0fbfc 0%, #e6f7fa 100%);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(15, 170, 197, 0.08), 
                inset 0 2px 5px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 170, 197, 0.1);
}

.faq-heading {
    text-align: center;
    color: #222;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

/* The card-like FAQ items */
.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(15, 170, 197, 0.12);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 24px;
    color: #0FAAC5;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-trigger.active {
    color: #0FAAC5;
}

.faq-item:has(.faq-trigger.active) {
    border-left-color: #0FAAC5;
}

.faq-trigger.active .faq-icon {
    transform: rotate(45deg); 
}

.faq-panel {
    padding: 0 25px 25px 25px;
    display: none;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    border-top: 1px solid #f5f5f5;
    margin-top: -5px;
    padding-top: 20px;
}
