/* Support Detail Section */
.support-detail-section {
    padding: 50px 20px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    margin-bottom: 30px;
}

.back-link a {
    color: #1C1C1C;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.back-link a svg {
    flex-shrink: 0;
}

.back-link a:hover {
    text-decoration: underline;
}

.support-detail-title {
    color: #1C1C1C;
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
}

.faq-items {
    display: flex;
    flex-direction: column;
}

.faq-item {
    gap: 24px;
    align-self: stretch;
    border-bottom: 1px solid rgba(28, 28, 28, 0.20);
    overflow: hidden;
}

.faq-item-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item-question span {
    color: #1C1C1C;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.faq-item-toggle {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item-toggle svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-item-toggle .minus-icon {
    display: none;
}

.faq-item.active .faq-item-toggle .plus-icon {
    display: none;
}

.faq-item.active .faq-item-toggle .minus-icon {
    display: block;
}

.faq-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0;
}

.faq-item.active .faq-item-content {
    max-height: none;
    padding: 0 0 24px 0;
}

/* Rich Text Styles for FAQ Content */
.faq-item-content {
    color: rgba(28, 28, 28, 0.70);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.faq-item-content p {
    margin-bottom: 16px;
}

.faq-item-content h2 {
    color: #1C1C1C;
    font-family: "Proxima Nova";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 30px 0 16px;
}

.faq-item-content h3 {
    color: #1C1C1C;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 24px 0 12px;
}

.faq-item-content h4 {
    color: #1C1C1C;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 20px 0 10px;
}

.faq-item-content ul,
.faq-item-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.faq-item-content ul {
    list-style-type: disc;
}

.faq-item-content ol {
    list-style-type: decimal;
}

.faq-item-content li {
    margin-bottom: 8px;
}

.faq-item-content a {
    color: #BE930B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-item-content a:hover {
    color: #BE8514;
    text-decoration: underline;
}

.faq-item-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    height: auto;
}

.faq-item-content blockquote {
    border-left: 4px solid #BE930B;
    padding-left: 20px;
    margin: 24px 0;
    color: #666666;
    font-style: italic;
    background-color: #f9f9f9;
    padding: 16px 20px;
    border-radius: 0 4px 4px 0;
}

.faq-item-content strong,
.faq-item-content b {
    font-weight: 600;
    color: #1C1C1C;
}

.faq-item-content em,
.faq-item-content i {
    font-style: italic;
}

.faq-item-content code {
    background-color: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    color: #c7254e;
}

.faq-item-content pre {
    background-color: #f4f4f4;
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 16px 0;
}

.faq-item-content pre code {
    background-color: transparent;
    padding: 0;
    color: #333;
}

.faq-item-content hr {
    border: none;
    border-top: 1px solid rgba(28, 28, 28, 0.20);
    margin: 32px 0;
}

.faq-item-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.faq-item-content th,
.faq-item-content td {
    border: 1px solid rgba(28, 28, 28, 0.20);
    padding: 12px;
    text-align: left;
}

.faq-item-content th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #1C1C1C;
}

@media (max-width: 768px) {
    .support-detail-section {
        padding: 40px 20px;
    }
    
    .support-detail-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-item-question {
        padding: 15px 0;
    }
    
    .faq-item-question span {
        font-size: 14px;
    }
    
    .faq-item-content h2 {
        font-size: 20px;
    }
    
    .faq-item-content h3 {
        font-size: 16px;
    }
}
