/* Domain page styles - FAQ, help, and domain-specific sections */

/* FAQ Section */
.faq-section {
    padding: 50px 0;
}

.faq-container h2 {
    margin-bottom: 1.5rem;
    color: #212121;
    font-size: 1.5rem;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    transition: background 0.2s ease;
}

.faq-header:hover {
    background: #e9ecef;
}

.faq-header p {
    margin: 0;
    font-weight: 500;
    font-size: 1.2rem;
    flex: 1;
}

.toggle-icon {
    font-size: 1.25rem;
    color: #0026ff;
    flex-shrink: 0;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.faq-content {
    display: none;
    padding: 1rem 1.25rem;
    padding-top: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.faq-content.faq-open,
.faq-content.show {
    display: block !important;
}

.faq-content a {
    color: #0026ff;
    text-decoration: underline;
}

.faq-content a:hover {
    color: #0018b0;
}

/* Help section */
.help-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.help-domain h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.help-domain p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.helpbtn {
    display: inline-block;
    padding: 12px 28px;
    background: #0026ff;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1.2rem;
    transition: background 0.2s ease;
}

.helpbtn:hover {
    background: #0018b0;
    color: #fff !important;
}
