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

.page-community-help-center__hero {
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-community-help-center__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-community-help-center__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

.page-community-help-center__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-community-help-center__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-community-help-center__hero-button:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-community-help-center__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust to show part of the image */
    right: -100px; /* Adjust position */
    width: 400px;
    height: 400px;
    opacity: 0.3;
    z-index: 0;
    display: none; /* Hidden by default, only shown on larger screens */
}

.page-community-help-center__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .page-community-help-center__hero-image-wrapper {
        display: block;
    }
}

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

.page-community-help-center__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-community-help-center__faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 5px solid #1A237E;
}

.page-community-help-center__faq-item:hover {
    transform: translateY(-5px);
}

.page-community-help-center__faq-question {
    font-size: 1.3em;
    color: #1A237E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-community-help-center__faq-answer {
    color: #444;
    font-size: 1em;
}

.page-community-help-center__link {
    color: #1A237E;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-community-help-center__link:hover {
    color: #FFD700;
}

.page-community-help-center__guides-section {
    background-color: #f0f2f5;
}

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

.page-community-help-center__guide-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-community-help-center__guide-card:hover {
    transform: translateY(-5px);
}

.page-community-help-center__guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-community-help-center__guide-title {
    font-size: 1.4em;
    color: #1A237E;
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-community-help-center__guide-text {
    color: #555;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-community-help-center__guide-button {
    display: inline-block;
    background-color: #1A237E;
    color: #FFD700;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    border: 1px solid #1A237E;
}

.page-community-help-center__guide-button:hover {
    background-color: #0d1357;
    color: #fff;
}

.page-community-help-center__contact-section {
    background-color: #fff;
}

.page-community-help-center__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-community-help-center__contact-item {
    background-color: #f0f2f5;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-community-help-center__contact-item:hover {
    transform: translateY(-5px);
}

.page-community-help-center__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(26, 35, 126, 0.5));
}

.page-community-help-center__contact-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-community-help-center__contact-text {
    color: #555;
    margin-bottom: 20px;
}

.page-community-help-center__contact-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 1px solid #FFD700;
}

.page-community-help-center__contact-button:hover {
    background-color: #e5c100;
}

.page-community-help-center__resources-section {
    background-color: #e8eaf6;
}

.page-community-help-center__resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-community-help-center__resource-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-right: 3px solid #1A237E;
    transition: transform 0.3s ease;
}

.page-community-help-center__resource-card:hover {
    transform: translateY(-3px);
}

.page-community-help-center__resource-title {
    font-size: 1.3em;
    color: #1A237E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-community-help-center__resource-text {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-community-help-center__resource-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-community-help-center__resource-link:hover {
    color: #1A237E;
    text-decoration: underline;
}

.page-community-help-center__cta-banner {
    background: linear-gradient(90deg, #1A237E 0%, #3F51B5 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.page-community-help-center__cta-content {
    max-width: 800px;
    z-index: 1;
}

.page-community-help-center__cta-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: bold;
}

.page-community-help-center__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-community-help-center__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

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

.page-community-help-center__cta-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    .page-community-help-center__cta-banner {
        flex-direction: row;
        text-align: left;
        justify-content: space-around;
    }
    .page-community-help-center__cta-image {
        display: block;
        position: relative;
        width: 250px;
        height: 250px;
        object-fit: contain;
        opacity: 1;
        right: auto;
        bottom: auto;
    }
    .page-community-help-center__hero-image-wrapper {
        bottom: -20px;
        right: -50px;
        width: 300px;
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .page-community-help-center__hero-title {
        font-size: 4em;
    }
    .page-community-help-center__hero-image-wrapper {
        bottom: -50px;
        right: -100px;
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .page-community-help-center__hero-title {
        font-size: 2.5em;
    }
    .page-community-help-center__hero-subtitle {
        font-size: 1em;
    }
    .page-community-help-center__section-title {
        font-size: 2em;
    }
    .page-community-help-center__section-description {
        font-size: 0.9em;
    }
    .page-community-help-center__faq-grid, .page-community-help-center__guide-grid, .page-community-help-center__contact-methods, .page-community-help-center__resources-grid {
        grid-template-columns: 1fr;
    }
    .page-community-help-center__cta-title {
        font-size: 2em;
    }
    .page-community-help-center__cta-description {
        font-size: 1em;
    }
}