.page-support {
    background-color: #B71C1C; /* Custom background color */
    color: #FFF5E1; /* Custom main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section, relying on body padding-top from shared.css */
}

.page-support__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px; /* Space between image and content */
}

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

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

.page-support__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFCC66; /* Gold for main title for glow effect */
    text-shadow: 0 0 10px rgba(255, 204, 102, 0.7); /* Glow effect */
}

.page-support__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF5E1;
}

.page-support__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom button color */
    color: #7A0E0E; /* Deep Red for button text for contrast */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #F2B544; /* Custom border color */
    box-shadow: 0 0 15px rgba(244, 211, 77, 0.5); /* Gold glow */
}

.page-support__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(244, 211, 77, 0.8), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    color: #FFCC66; /* Gold for section titles */
    text-align: center;
    margin: 60px 0 20px;
    text-shadow: 0 0 8px rgba(255, 204, 102, 0.5);
}

.page-support__section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.05em;
    color: #FFF5E1;
    padding: 0 20px;
}

.page-support__contact-methods,
.page-support__faq-section,
.page-support__resources-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-support__method-card {
    background-color: #D32F2F; /* Custom card background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Custom border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(244, 211, 77, 0.6);
}

.page-support__method-icon-wrapper {
    margin-bottom: 20px;
    height: 150px; /* Fixed height for image wrapper */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure image doesn't overflow */
    border-radius: 8px;
}

.page-support__method-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the wrapper while maintaining aspect ratio */
    display: block;
    border-radius: 8px;
}

.page-support__method-title {
    font-size: 1.5em;
    color: #F4D34D; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-support__method-text {
    font-size: 1em;
    color: #FFF5E1;
    margin-bottom: 25px;
}

.page-support__method-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom button color */
    color: #7A0E0E; /* Deep Red for button text */
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F2B544; /* Custom border color */
}

.page-support__method-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(244, 211, 77, 0.5);
}

.page-support__faq-content {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.page-support__faq-illustration {
    flex: 1;
    min-width: 300px;
    max-width: 40%; /* Adjust width for desktop */
    margin: 0 auto;
}

.page-support__faq-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__faq-list {
    flex: 2;
    min-width: 400px; /* Ensure FAQ list has enough space */
}

.page-support__faq-item {
    background-color: #D32F2F; /* Custom card background */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #F2B544; /* Custom border */
}

.page-support__faq-question {
    font-size: 1.2em;
    color: #F4D34D; /* Gold for FAQ questions */
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.page-support__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-support__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #FFF5E1;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Max height for smooth transition */
    padding: 15px 25px 25px;
}

.page-support__faq-answer p {
    margin-bottom: 0;
}

.page-support__more-faq {
    text-align: center;
    margin-top: 40px;
}

.page-support__more-faq-text {
    font-size: 1.1em;
    color: #FFF5E1;
}

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

.page-support__resource-card {
    background-color: #D32F2F; /* Custom card background */
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    color: #FFF5E1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #F2B544; /* Custom border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 12px rgba(244, 211, 77, 0.5);
}

.page-support__resource-title {
    font-size: 1.3em;
    color: #F4D34D; /* Gold for resource titles */
    margin-bottom: 10px;
}

.page-support__resource-description {
    font-size: 0.95em;
    color: #FFF5E1;
}

.page-support__inline-link {
    color: #FFD86A; /* Gold color for inline links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-support__inline-link:hover {
    color: #E6B800; /* Darker gold on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-support__faq-content {
        flex-direction: column;
        align-items: center;
    }

    .page-support__faq-illustration {
        max-width: 60%;
        margin-bottom: 30px;
    }

    .page-support__faq-list {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 0 15px 30px;
    }

    .page-support__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-support__section-title {
        font-size: clamp(1.6em, 5vw, 2.2em);
    }

    .page-support__contact-methods,
    .page-support__faq-section,
    .page-support__resources-section {
        padding: 30px 15px;
    }

    .page-support__methods-grid,
    .page-support__resources-grid {
        grid-template-columns: 1fr;
    }

    .page-support__faq-illustration {
        max-width: 80%;
    }

    /* Mobile overflow prevention for images */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }

    .page-support__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: clamp(1.4em, 6vw, 1.8em);
    }

    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-support__faq-question::after {
        right: 20px;
    }

    .page-support__faq-answer {
        padding: 0 20px;
    }

    .page-support__faq-item.active .page-support__faq-answer {
        padding: 10px 20px 20px;
    }
}