.unimes-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-family: 'Inter', sans-serif;
}

.unimes-faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.unimes-faq-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: #e20074;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.unimes-faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #0b132a;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.unimes-faq-subtitle {
    font-size: 1rem;
    color: #5d6778;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Accordion Items Style */
.unimes-faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.unimes-faq-item {
    border-radius: 14px;
    background: #ffffff;
    border: 1.5px solid #eaecee;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific Border Colors to simulate the design */
.unimes-faq-item:nth-child(1) { border-color: #f72585; }
.unimes-faq-item:nth-child(2) { border-color: #7209b7; }
.unimes-faq-item:nth-child(3) { border-color: #3f37c9; }
.unimes-faq-item:nth-child(4) { border-color: #4361ee; }
.unimes-faq-item:nth-child(5) { border-color: #4cc9f0; }

.unimes-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    font-family: inherit;
    gap: 1rem;
}

.unimes-faq-trigger:hover,
.unimes-faq-trigger:focus {
    outline: none;
    background: transparent;
}

.unimes-faq-trigger-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-grow: 1;
}

.unimes-faq-number {
    font-size: 1.2rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

/* Specific Numbers colors */
.unimes-faq-item:nth-child(1) .unimes-faq-number { color: #f72585; }
.unimes-faq-item:nth-child(2) .unimes-faq-number { color: #7209b7; }
.unimes-faq-item:nth-child(3) .unimes-faq-number { color: #3f37c9; }
.unimes-faq-item:nth-child(4) .unimes-faq-number { color: #4361ee; }
.unimes-faq-item:nth-child(5) .unimes-faq-number { color: #4cc9f0; }

.unimes-faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b132a;
    line-height: 1.4;
}

.unimes-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: block;
}

/* Toggle Circle Icons colored */
.unimes-faq-item:nth-child(1) .unimes-faq-icon { background-color: #f72585; }
.unimes-faq-item:nth-child(2) .unimes-faq-icon { background-color: #7209b7; }
.unimes-faq-item:nth-child(3) .unimes-faq-icon { background-color: #3f37c9; }
.unimes-faq-item:nth-child(4) .unimes-faq-icon { background-color: #4361ee; }
.unimes-faq-item:nth-child(5) .unimes-faq-icon { background-color: #4cc9f0; }

.unimes-faq-icon::before,
.unimes-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Horizontal line */
.unimes-faq-icon::before {
    width: 12px;
    height: 2px;
}

/* Vertical line */
.unimes-faq-icon::after {
    width: 2px;
    height: 12px;
}

/* Opened state */
.unimes-faq-item.is-active .unimes-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Collapsible content block */
.unimes-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.unimes-faq-answer {
    padding: 0 1.5rem 1.5rem 4.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5d6778;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .unimes-faq-title {
        font-size: 2.1rem;
    }
    
    .unimes-faq-trigger {
        padding: 1.2rem;
        gap: 0.75rem;
    }

    .unimes-faq-trigger-content {
        gap: 1rem;
    }
    
    .unimes-faq-answer {
        padding: 0 1.2rem 1.2rem 3.2rem;
    }

    .unimes-faq-question {
        font-size: 1rem;
    }
}
