.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pre-title {
    color: #C19A6B;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.subtitle u {
    text-decoration-color: #333;
    text-underline-offset: 3px;
}

.faq-list {
    border-top: 1px solid #000;
}

.faq-item {
    border-bottom: 1px solid #000;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 25px 10px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.faq-trigger:hover {
    background-color: #f9f9f9;
}

.trigger-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot-red { background-color: #D34528; }
.dot-orange { background-color: #D96C2C; }
.dot-brown { background-color: #C17A2E; }
.dot-lime { background-color: #C6D132; }
.dot-green { background-color: #5AA926; }
.dot-blue { background-color: #528DD6; }

.trigger-text {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.arrow-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.faq-item.active .arrow-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    padding: 0 10px;
}

.faq-item.active .faq-content {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 40px;
    padding-top: 10px;
}

.faq-item.active .trigger-text {
    font-weight: 700;
}

.content-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.content-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.content-text-block {
    flex: 1;
}

.content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.content-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 1024px) {
    .faq-wrapper {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        width: 100%;
    }

    .main-title {
        margin: 0 0 10px 0;
    }

    .trigger-text {
        font-size: 14px;
    }

    .faq-item.active .faq-content {
        max-height: 600px;
        padding-bottom: 20px;
        padding-top: 10px;
    }

    .content-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .content-title {
        font-size: 21px;
        text-align: center;
    }

    .content-desc {
        font-size: 15px;
        text-align: center;
    }
}