/* style/support.css */
.page-support {
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px);
}

.page-support__hero-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-support__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-support__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-support__button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-support__button--register:hover {
    background-color: #f0f0f0;
    color: #333333;
}

.page-support__button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-support__button--login:hover {
    background-color: #e0a53b;
    color: #000000;
}

.page-support__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-support__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.page-support__section-intro {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__faq-section {
    background-color: #f8f8f8;
    padding: 60px 0;
}

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

.page-support__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__faq-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__faq-question {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 15px;
}

.page-support__faq-answer {
    color: #666666;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-support__faq-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__faq-link:hover {
    color: #e0a53b;
}

.page-support__contact-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-support__contact-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__contact-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__contact-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-support__contact-description {
    color: #666666;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-support__guides-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 0;
}

.page-support__guides-section .page-support__section-title {
    color: #FCBC45;
}

.page-support__guides-section .page-support__section-intro {
    color: #cccccc;
}

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

.page-support__guide-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-support__guide-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-support__guide-title a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-title a:hover {
    color: #FCBC45;
}

.page-support__guide-description {
    color: #cccccc;
    font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.2em;
    }

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

    .page-support__hero-actions {
        flex-direction: column;
    }

    .page-support__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

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

    .page-support__section-intro {
        font-size: 0.9em;
    }

    .page-support__faq-grid,
    .page-support__contact-methods,
    .page-support__guides-grid {
        grid-template-columns: 1fr;
    }

    /* Enforce mobile image responsiveness */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
    .page-support__faq-icon,
    .page-support__contact-icon {
        width: 150px;
        height: 150px;
    }
}