/* style/help-center.css */
.page-help-center {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #0A1931; /* Main dark blue background */
}

.page-help-center a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-help-center a:hover {
    color: #FFC107; /* Slightly darker gold on hover */
}

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

/* Hero Section */
.page-help-center__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background-color: #0A1931;
    overflow: hidden;
    padding: 60px 20px;
    text-align: center;
}

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

.page-help-center__hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 800px;
}

.page-help-center__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-help-center__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-help-center__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-help-center__hero-button:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
}

/* Section Titles */
.page-help-center__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-help-center__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Introduction Section */
.page-help-center__introduction {
    padding: 60px 0;
    background-color: #1A2E4B; /* Slightly lighter dark blue */
}

.page-help-center__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #C0C0C0;
}

/* Detail List Section */
.page-help-center__detail-list {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-help-center__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-help-center__card {
    background-color: #1A2E4B; /* Darker card background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-help-center__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-help-center__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-help-center__card-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for card titles */
}

.page-help-center__card-title a {
    color: #FFD700;
}

.page-help-center__card-title a:hover {
    color: #FFC107;
}

.page-help-center__card-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-help-center__card-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-help-center__card-button:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
}

/* Call to Action Section */
.page-help-center__cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1931, #1A2E4B);
    text-align: center;
}

.page-help-center__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 20px;
}

.page-help-center__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-help-center__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-help-center__cta-button:hover {
    background-color: #FFC107;
    transform: translateY(-3px);
}

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

    .page-help-center__hero-description {
        font-size: 1.1em;
    }

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

    .page-help-center__text-content {
        font-size: 1em;
    }

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

    .page-help-center__card-title {
        font-size: 1.4em;
    }

    .page-help-center__cta-title {
        font-size: 2.2em;
    }

    .page-help-center__cta-description {
        font-size: 1em;
    }

    .page-help-center__hero, .page-help-center__introduction, .page-help-center__detail-list, .page-help-center__cta {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-help-center__hero-title {
        font-size: 2em;
    }

    .page-help-center__hero-description {
        font-size: 0.9em;
    }

    .page-help-center__hero-button, .page-help-center__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-help-center__section-title {
        font-size: 1.8em;
    }
}