/* Wrapper */
.why-trust-us-accordion {
    margin-top: 2rem;
    overflow: hidden;
    background: #ffffff;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

/* Hide only empty paragraphs inside the accordion */
.why-trust-us-accordion p:empty {
    display: none;
}

/* Header button */
.why-trust-us-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    background-color: rgba(189, 42, 51, 0.08); 
    border-left: 2px solid #BD2A33;
}

.why-trust-us-header:hover {
    background-color: rgba(189, 42, 51, 0.12);
}

/* Title text */
.why-trust-us-title {
    flex: 1;
    color: #333333;
}

/* Icon */
.why-trust-us-icon {
    transition: transform 0.3s ease;
    margin-left: 10px;
}

/* Rotate icon when open */
.why-trust-us-header[aria-expanded="true"] .why-trust-us-icon {
    transform: rotate(180deg);
}

/* Accordion content */
.why-trust-us-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #ffffff;
}

/* Inner padding */
.why-trust-us-content-inner {
    padding: 16px 20px;
    color: #333333;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Remove bottom padding when accordion is open */
.why-trust-us-content-inner p {
    margin-bottom: 0 !important;
}

