﻿.faq-section {
    padding: 60px 0;
    background-color: #f7f7f7;
}

.faq-content {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-more {
    color: var(--mainColor);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-more:hover {
    color: #1a5490;
}

.faq-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin-bottom: 20px;
}

.faq-image {
    margin-bottom: 20px;
}

.faq-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-list-item:last-child {
    border-bottom: none;
}

.diamond {
    width: 8px;
    height: 8px;
    background-color: var(--mainColor);
    transform: rotate(45deg);
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-list-item .text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.faq-list-item:hover .diamond {
    opacity: 0;
    transform: rotate(45deg) scale(0);
}

.faq-list-item:hover .text {
    color: #ea4844;
    margin-left: 8px;
}