/* style/help-center.css */
.page-help-center {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.page-help-center-hero {
    position: relative;
    background-color: #003366; /* Primary dark blue */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-help-center-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-help-center-hero > .page-help-center-container {
    position: relative;
    z-index: 1;
}

.page-help-center-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-help-center-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-help-center-search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.page-help-center-search-input {
    width: 60%;
    max-width: 500px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1em;
    color: #333;
}

.page-help-center-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-help-center-btn-primary {
    background-color: #FFCC00; /* Accent gold */
    color: #003366; /* Primary dark blue */
    margin-top: 20px;
}

.page-help-center-btn-primary:hover {
    background-color: #e6b800;
    color: #002244;
}

.page-help-center-btn-search {
    background-color: #004488; /* Slightly lighter blue */
    color: #fff;
    border-radius: 0 5px 5px 0;
}

.page-help-center-btn-search:hover {
    background-color: #0055aa;
}

/* Topics Section */
.page-help-center-topics {
    padding: 60px 0;
    background-color: #f4f7fa; /* Light background */
    text-align: center;
}

.page-help-center-section-title {
    font-size: 2.5em;
    color: #003366; /* Primary dark blue */
    margin-bottom: 15px;
}

.page-help-center-section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-help-center-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-help-center-topic-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-help-center-topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-help-center-topic-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-help-center-card-title {
    font-size: 1.5em;
    color: #003366; /* Primary dark blue */
    margin-bottom: 15px;
}

.page-help-center-card-title a {
    text-decoration: none;
    color: #003366;
}

.page-help-center-card-title a:hover {
    color: #FFCC00;
}

.page-help-center-card-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
    min-height: 70px; /* Ensure consistent card height */
}

.page-help-center-btn-secondary {
    background-color: #004488; /* Slightly lighter blue */
    color: #fff;
    border: 1px solid #004488;
}

.page-help-center-btn-secondary:hover {
    background-color: #0055aa;
    border-color: #0055aa;
}

/* Contact Section */
.page-help-center-contact {
    position: relative;
    background-color: #003366; /* Primary dark blue */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-help-center-contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-help-center-contact > .page-help-center-container {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-help-center-title {
        font-size: 2.5em;
    }

    .page-help-center-subtitle {
        font-size: 1em;
    }

    .page-help-center-search-bar {
        flex-direction: column;
    }

    .page-help-center-search-input,
    .page-help-center-btn-search {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .page-help-center-btn-search {
        margin-top: 10px;
    }

    .page-help-center-section-title {
        font-size: 2em;
    }

    .page-help-center-topic-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-help-center-hero,
    .page-help-center-contact {
        padding: 60px 0;
    }

    .page-help-center-title {
        font-size: 2em;
    }

    .page-help-center-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}