body {
    font-family: Arial, sans-serif;
    background-color: #f6f9fc;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #FF8A1F;
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    margin: 0;
    border: none;
    background-color: #e0e0e0;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.tab-button:hover {
    background-color: #d0d0d0;
}

.tab-button.active {
    background-color: #FF8A1F;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

a {
    color: #0066cc;
    text-decoration: none;
}

.footer-note {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    font-style: italic;
}


/* Modern Help / FAQ section */

.help-section {
    animation: fadeInHelp 0.25s ease;
}

.help-hero {
    background: linear-gradient(135deg, #FF8A1F 0%, #ffad5c 100%);
    color: white;
    padding: 34px;
    border-radius: 22px;
    margin-bottom: 22px;
    box-shadow: 0 18px 40px rgba(255, 138, 31, 0.22);
}

.help-badge {
    display: inline-block;
    padding: 7px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.help-hero h2 {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.1;
}

.help-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.help-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    margin-bottom: 22px;
    background: white;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(23, 43, 77, 0.06);
}

.help-contact-card h3 {
    margin: 0 0 6px;
    color: #222;
}

.help-contact-card p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.help-contact-button {
    flex-shrink: 0;
    display: inline-block;
    padding: 12px 16px;
    background: #FF8A1F;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(255, 138, 31, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-contact-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 138, 31, 0.28);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.help-card {
    background: white;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #edf0f4;
    box-shadow: 0 12px 28px rgba(23, 43, 77, 0.05);
}

.help-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 14px;
    background: #fff3e8;
    font-size: 1.2rem;
}

.help-card h3 {
    margin: 0 0 8px;
    color: #222;
}

.help-card p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.faq-list {
    background: white;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #edf0f4;
    box-shadow: 0 12px 30px rgba(23, 43, 77, 0.06);
}

.faq-title {
    margin-top: 0;
    margin-bottom: 16px;
    color: #222;
}

.faq-item {
    border: 1px solid #edf0f4;
    border-radius: 14px;
    margin-bottom: 10px;
    background: #ffffff;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 16px 46px 16px 16px;
    font-weight: 700;
    color: #222;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff3e8;
    color: #FF8A1F;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 16px 16px;
    color: #666;
    line-height: 1.6;
}

.faq-item p + p {
    padding-top: 0;
}

@keyframes fadeInHelp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .help-hero {
        padding: 26px 22px;
        border-radius: 18px;
    }

    .help-hero h2 {
        font-size: 1.65rem;
    }

    .help-contact-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .help-contact-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .faq-list {
        padding: 18px;
        border-radius: 18px;
    }
}