.page-support {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

.page-support__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-support__hero-container {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    max-width: 900px;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.2;
}

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

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

.page-support__hero-button:hover {
    background-color: #e0a53b;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
    margin-top: 30px;
    border-radius: 8px;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__security-section,
.page-support__resources-section,
.page-support__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-support__faq-section {
    background-color: #f9f9f9;
}

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

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

.page-support__faq-grid,
.page-support__contact-methods,
.page-support__security-features,
.page-support__resources-grid {
    display: grid;
    gap: 30px;
}

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

.page-support__faq-item,
.page-support__contact-method-card,
.page-support__security-feature-card,
.page-support__resource-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover,
.page-support__contact-method-card:hover,
.page-support__security-feature-card:hover,
.page-support__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-support__faq-item-title,
.page-support__contact-method-title,
.page-support__security-feature-title,
.page-support__resource-card-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__faq-item-text,
.page-support__contact-method-description,
.page-support__security-feature-description,
.page-support__resource-card-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-support__faq-item-link,
.page-support__security-link,
.page-support__resource-button {
    display: inline-block;
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__faq-item-link:hover,
.page-support__security-link:hover,
.page-support__resource-button:hover {
    color: #e0a53b;
}

.page-support__faq-item-link--disabled {
    color: #AAAAAA;
    pointer-events: none;
    cursor: default;
}

.page-support__contact-section {
    background-color: #F0F0F0;
}

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

.page-support__contact-method-icon {
    width: 250px; /* Minimum size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: contain;
}

.page-support__contact-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-support__contact-button:hover {
    background-color: #333333;
}

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

.page-support__contact-button--primary:hover {
    background-color: #e0a53b;
}

.page-support__security-features {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-support__security-icon {
    width: 250px; /* Minimum size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: contain;
}

.page-support__resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-support__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.page-support__cta-title {
    color: #FFFFFF;
}

.page-support__cta-description {
    color: #F0F0F0;
}

.page-support__cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

.page-support__cta-button--register:hover {
    background-color: #e0e0e0;
}

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

.page-support__cta-button--login:hover {
    background-color: #e0a53b;
}

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

    .page-support__faq-title,
    .page-support__contact-title,
    .page-support__security-title,
    .page-support__resources-title,
    .page-support__cta-title {
        font-size: 2em;
    }

    .page-support__hero-description,
    .page-support__faq-intro,
    .page-support__contact-intro,
    .page-support__security-intro,
    .page-support__resources-intro,
    .page-support__cta-description {
        font-size: 1em;
    }

    .page-support__hero-section,
    .page-support__faq-section,
    .page-support__contact-section,
    .page-support__security-section,
    .page-support__resources-section,
    .page-support__cta-section {
        padding: 40px 0;
    }

    .page-support__container {
        padding: 0 15px;
    }

    .page-support__hero-image,
    .page-support__contact-method-icon,
    .page-support__security-icon {
        max-width: 100%;
        height: auto;
    }

    .page-support__faq-item,
    .page-support__contact-method-card,
    .page-support__security-feature-card,
    .page-support__resource-card {
        padding: 20px;
    }

    .page-support__contact-method-icon,
    .page-support__security-icon {
        width: 100%; /* Ensures images are not smaller than 200px and fill container */
        min-width: 200px;
        min-height: 200px;
        object-fit: cover;
    }

    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}