/* style/support.css */
.page-support {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-support__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 40px;
    background-color: #FFFFFF;
}

.page-support__hero-content {
    max-width: 800px;
}

.page-support__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333333;
}

.page-support__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__hero-button--primary {
    background-color: #FCBC45; /* Login color */
    color: #000000;
}

.page-support__hero-button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

.page-support__hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-support__faq-section,
.page-support__contact-options-section,
.page-support__cta-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-support__faq-title,
.page-support__contact-options-title,
.page-support__cta-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.page-support__faq-intro,
.page-support__contact-options-intro,
.page-support__cta-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-support__faq-item,
.page-support__contact-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-support__faq-item-title,
.page-support__contact-card-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-support__faq-item-title a,
.page-support__contact-card-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__faq-item-title a:hover,
.page-support__contact-card-title a:hover {
    color: #FCBC45;
}

.page-support__faq-item-text,
.page-support__contact-card-description {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-support__button-group {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-support__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-support__button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-support__button--secondary {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.page-support__button--secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-support__contact-card-icon {
    width: 200px; /* Minimum size */
    height: 150px; /* Adjust height to maintain aspect ratio for 400x300 */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__contact-card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95em;
    font-weight: bold;
    text-decoration: none;
    background-color: #000000;
    color: #FFFFFF;
    margin-top: auto; /* Push button to bottom */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__contact-card-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-support__cta-section {
    background-color: #000000; /* Main color as background */
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
}

.page-support__cta-title {
    color: #FFFFFF;
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-support__cta-description {
    color: #f0f0f0;
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-support__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    background-color: #FCBC45; /* Login color */
    color: #000000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__cta-button:hover {
    background-color: #e0a53b;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__faq-title,
    .page-support__contact-options-title,
    .page-support__cta-title {
        font-size: 2em;
    }
    .page-support__hero-section {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__faq-section,
    .page-support__contact-options-section,
    .page-support__cta-section {
        padding: 50px 0;
    }
    .page-support__faq-title,
    .page-support__contact-options-title,
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__faq-intro,
    .page-support__contact-options-intro,
    .page-support__cta-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-support__faq-grid,
    .page-support__contact-grid {
        grid-template-columns: 1fr;
    }
    .page-support__button-group {
        flex-direction: column;
        gap: 15px;
    }
    /* Ensure images are responsive and don't overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
    /* Content area images must not be smaller than 200px */
    .page-support__contact-card-icon {
        width: 200px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__hero-section {
        padding: 40px 15px;
    }
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__hero-description {
        font-size: 0.9em;
    }
    .page-support__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support__container {
        padding: 0 15px;
    }
    .page-support__faq-title,
    .page-support__contact-options-title,
    .page-support__cta-title {
        font-size: 1.5em;
    }
    .page-support__button,
    .page-support__cta-button {
        width: 100%;
    }
    .page-support__faq-item-title,
    .page-support__contact-card-title {
        font-size: 1.2em;
    }
    .page-support__contact-card-icon {
        width: 200px;
        height: auto;
    }
}