/* style/support.css */
.page-support {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for light background */
    background-color: #FFFFFF; /* Match shared body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Account for fixed header on desktop */
}

@media (max-width: 768px) {
    .page-support {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset if needed, or keep consistent */
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
}

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

.page-support__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF; /* Light text on dark background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
    font-weight: bold;
    line-height: 1.2;
}

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

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

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

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

.page-support__button--primary:hover {
    background-color: #e0a53a;
}

.page-support__button--secondary {
    background-color: #FFFFFF; /* Register button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-support__button--secondary:hover {
    background-color: #f0f0f0;
    border-color: #e0a53a;
}

.page-support__button--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

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

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

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

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-support__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 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.08);
    transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
}

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

.page-support__faq-answer {
    font-size: 1em;
    color: #555555;
}

/* Contact Section */
.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;
    margin-top: 40px;
}

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

.page-support__contact-icon {
    width: 200px; /* Enforced minimum size */
    height: 150px; /* Enforced minimum size */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-support__contact-card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__contact-card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Guides Section */
.page-support__guides-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

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

.page-support__guide-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
}

.page-support__guide-image {
    width: 200px; /* Enforced minimum size */
    height: 133px; /* Enforced minimum size */
    object-fit: cover;
    display: block;
    width: 100%; /* For responsive scaling within card */
    height: auto; /* For responsive scaling within card */
}

.page-support__guide-title {
    font-size: 1.4em;
    color: #000000;
    margin: 20px 20px 10px 20px;
    font-weight: bold;
}

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

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

.page-support__guide-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 20px;
    flex-grow: 1;
}

.page-support__link {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px;
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

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

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

.page-support__cta-title {
    font-size: 3em;
    color: #FCBC45; /* Accent color */
    margin-bottom: 20px;
}

.page-support__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Additional Resources */
.page-support__additional-resources {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-support__resource-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-support__resource-list li {
    background-color: #FFFFFF;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

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

.page-support__resource-link:hover {
    color: #FCBC45;
}

/* Security Commitment */
.page-support__security-commitment {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

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

.page-support__security-icon {
    width: 200px; /* Enforced minimum size */
    height: 133px; /* Enforced minimum size */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__security-feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__security-feature-description {
    font-size: 0.95em;
    color: #555555;
}

/* Testimonial Section */
.page-support__testimonial-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

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

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

.page-support__testimonial-avatar {
    width: 200px; /* Enforced minimum size */
    height: 200px; /* Enforced minimum size */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FCBC45;
}

.page-support__testimonial-quote {
    font-style: italic;
    font-size: 1.1em;
    color: #333333;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-support__testimonial-author {
    font-weight: bold;
    color: #000000;
    font-size: 1em;
}


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

@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__button {
        width: 80%;
        max-width: 300px;
    }
    .page-support__button--large {
        width: 90%;
        max-width: 350px;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-intro {
        font-size: 0.95em;
    }
    .page-support__faq-question,
    .page-support__contact-card-title,
    .page-support__guide-title,
    .page-support__security-feature-title {
        font-size: 1.2em;
    }
    .page-support__cta-title {
        font-size: 2em;
    }
    /* Enforce min-width 200px for all content images in mobile */
    .page-support img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum width for content images */
        min- /* Enforce minimum height for content images */
        object-fit: contain; /* Adjust as needed, cover or contain */
    }
    .page-support__hero-image {
        min-width: 100%; /* Hero image should always be full width */
        min-height: 250px; /* Minimum height for hero image on mobile */
    }
    .page-support__contact-icon,
    .page-support__security-icon,
    .page-support__testimonial-avatar {
        min-width: 200px;
        min-height: 200px; /* For square images */
    }
    .page-support__guide-image {
        min-width: 100%;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__cta-title {
        font-size: 1.6em;
    }
    .page-support__button {
        width: 100%;
    }
    .page-support__button--large {
        width: 100%;
    }
}

/* Ensure no filter properties are used on images */
.page-support img {
    filter: none !important; /* Explicitly prevent any filter */
}