/* ==========================================================================
   HELP PAGE
   ========================================================================== */

/* HELP PAGE SPECIFIC */
.help-page {
    padding: 6rem 10%;
    background: var(--bg-body);
    min-height: 100vh;
}

.help-page p {
    margin-top: 10px;
}

.help-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.help-card {
    padding: 2.5rem;
    border-radius: 25px;
    text-decoration: none !important;
    color: inherit !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    background-color: var(--button);
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--accent);
    background-color: var(--bg-card);
}

.help-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.help-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.help-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    margin-top: auto;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
}

.help-footer-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.info-box {
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
}

.info-box i {
    font-size: 2rem;
    color: var(--accent);
}