/* General Layout and Typography */


.support-topics-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.support-section {
    display: grid;
    gap: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

/* FAQ Item Styling */
.faq-item {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Button Styling */
.faq-toggle-btn {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1a1a1a;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-toggle-btn:hover {
    background-color: #f9fafb;
}

/* Icon Animation */
.toggle-icon {
    transition: transform 0.3s ease;
}

.faq-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Collapsible Content Styling */
.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content.active {
    max-height: 500px; /* A large value to allow for content expansion */
    padding-bottom: 1.5rem;
}

.faq-content p {
    color: #4b5563;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* List Styling (updated) */
.faq-content ol {
    list-style-type: decimal;
    color: #4b5563;
    padding-left: 2rem; /* Increased padding for better list indentation */
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-content ul {
    list-style-type: disc; /* Default bullet style */
    color: #4b5563;
    padding-left: 2rem; /* Increased padding for better list indentation */
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-content li {
    margin-bottom: 0.5rem; /* Added spacing between list items */
}

/* Horizontal line for sections */
hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 3rem 0;
}