.faq-section {
    padding: 120px 0;
    background-color: #111;
    position: relative;
}

.faq-header {
    margin-bottom: 60px;
    text-align: center;
}

.faq-header .sub-title {
    color: #fff;
    opacity: 0.6;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
}

.faq-header h2 {
    font-size: 45px;
    font-weight: 300;
    color: #fff;
}

.faq-header h2 span {
    font-weight: 700;
}

.accordion-item {
    background-color: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 100%;
    height: 2px;
}

.accordion-icon::after {
    width: 2px;
    height: 100%;
}
.accordion-item.active {
    background-color: #1ba69c;
    border-color: #1ba69c;
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background-color: #161616;
}

.accordion-content p {
    padding: 30px;
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faq-img:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 32px;
    }
    .accordion-header {
        padding: 20px;
    }
    .accordion-header h3 {
        font-size: 16px;
    }
}
