.help-page {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.help-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.help-hero {
    text-align: center;
    margin-bottom: 70px;
}
.help-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #020617;
}
.help-hero p {
    font-size: 18px;
    color: #64748b;
    max-width: 650px;
    margin: 20px auto 35px;
}

.help-search {
    max-width: 600px;
    margin: auto;
    position: relative;
}
.help-search input {
    width: 100%;
    padding: 16px 55px 16px 20px;
    border-radius: 14px;
    border: none;
    outline: none;
    font-size: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.help-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 20px;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-bottom: 90px;
}
.category-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.category-card i {
    font-size: 34px;
    color: #2563eb;
    margin-bottom: 15px;
}
.category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.category-card p {
    font-size: 15px;
    color: #64748b;
}

.faq-section {
    max-width: 900px;
    margin: auto;
}
.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 45px;
}

.faq-item {
    background: #fff;
    margin-bottom: 18px;
    padding: 22px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    cursor: pointer;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question h4 {
    font-size: 18px;
}
.faq-question i {
    font-size: 20px;
    color: #2563eb;
    transition: 0.3s;
}
.faq-answer {
    display: none;
    padding-top: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active i {
    transform: rotate(180deg);
}

.help-cta {
    margin-top: 90px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #fff;
    padding: 70px 40px;
    border-radius: 24px;
    text-align: center;
}
.help-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.help-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}
.help-cta a {
    display: inline-block;
    padding: 14px 38px;
    background: #fff;
    color: #2563eb;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.help-cta a:hover {
    transform: scale(1.07);
}

@media(max-width: 992px){
    .help-categories {
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width: 576px){
    .help-hero h1 {
        font-size: 36px;
    }
    .help-categories {
        grid-template-columns: 1fr;
    }
}