﻿#tips h2, #faq h2 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

#tips blockquote {
    background: #f9f9f9;
    border-left: 4px solid var(--main-color);
    margin: 16px 0;
    padding: 12px 16px;
    color: #444;
    line-height: 1.6;
    border-radius: 4px;
}

#tips blockquote strong {
    color: #222;
    margin-bottom: 4px;
    font-weight: 600;
}

#faq details {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    margin: 12px 0;
    background: #fafafa;
    transition: background 0.2s ease;
}

    #faq details[open] {
        background: #98b79330;
    }

#faq summary {
    cursor: pointer;
    padding: 12px 16px;
    font-weight: 500;
    color: #333;
}

#faq details p {
    padding: 0 16px 12px 16px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #e6e6e6;
    margin: 0;
}

#faq summary:hover {
    background: var(--main-color);
}
