﻿/* Help Page Styles */

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    font-family: inherit;
}

/* Breadcrumb */
.help-breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
}

    .help-breadcrumb a {
        color: #666;
        text-decoration: none;
    }

        .help-breadcrumb a:hover {
            color: #333;
            text-decoration: underline;
        }

    .help-breadcrumb span {
        margin: 0 6px;
        color: #999;
    }

/* Header */
.help-header {
    text-align: center;
    margin-bottom: 32px;
}

.help-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.3px;
    border: none;
}

/* Help Card Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.help-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 28px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    min-height: 180px;
    justify-content: flex-start;
}

    .help-card:hover {
        border-color: #ccc;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    }

        .help-card:hover .help-card-title {
            color: #000;
        }

.help-card-icon {
    margin-bottom: 14px;
    color: #444;
}

.help-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
    text-decoration: underline;
}

.help-card-desc {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* Contact Us Section */
.help-contact-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 8px;
}

.help-section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.help-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.help-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px 28px;
    text-decoration: none;
    color: inherit;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    min-height: 180px;
    justify-content: flex-start;
}

.help-contact-card-button {
    font-family: inherit;
    outline: none;
}

.help-contact-card:hover {
    border-color: #ccc;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.help-contact-icon {
    margin-bottom: 14px;
    color: #444;
}

.help-contact-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    text-decoration: underline;
}

.help-contact-desc {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}
