.page-support {
    background-color: #B71C1C;
    color: #FFF5E1;
    font-family: Arial, sans-serif;
}

.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

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

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-support__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-support__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    color: #7A0E0E; /* Deep Red for contrast */
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    text-align: center;
}

.page-support__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-support__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F4D34D; /* Gold */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-support__faq-section,
.page-support__contact-options-section,
.page-support__guides-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-support__faq-item {
    background-color: #D32F2F; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-support__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF5E1;
    display: none;
    margin-top: 15px;
}

.page-support__faq-answer.active {
    display: block;
}

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

.page-support__contact-description {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-support__contact-card {
    background-color: #D32F2F; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.page-support__contact-icon {
    width: 250px; /* Minimum 200px */
    height: 187px; /* Maintain aspect ratio */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.5); /* Glow */
}

.page-support__card-title {
    font-size: 1.4em;
    color: #F4D34D; /* Gold */
    margin-bottom: 15px;
}

.page-support__card-title a {
    color: #F4D34D; /* Gold */
    text-decoration: none;
}

.page-support__card-title a:hover {
    text-decoration: underline;
}

.page-support__card-text {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-support__guide-card {
    background-color: #D32F2F; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid #F2B544; /* Border */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.page-support__guide-image {
    width: 100%;
    height: 250px; /* Example height, min 200px */
    object-fit: cover;
    display: block;
    box-shadow: 0 0 10px rgba(255, 204, 102, 0.3); /* Glow */
}

.page-support__guide-card .page-support__card-title {
    padding: 15px 20px 0;
    margin-bottom: 10px;
}

.page-support__guide-card .page-support__card-text {
    padding: 0 20px 20px;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-support__hero-section {
        padding-bottom: 30px;
    }

    .page-support__main-title {
        font-size: 2.2em;
    }

    .page-support__description {
        font-size: 1em;
    }

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

    .page-support__button {
        width: 100%;
        max-width: 300px;
    }

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

    .page-support__faq-section,
    .page-support__contact-options-section,
    .page-support__guides-section {
        padding: 40px 15px;
    }

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

    .page-support__contact-icon,
    .page-support__guide-image {
        max-width: 100%;
        height: auto; /* Ensure images don't overflow */
        min-height: 200px; /* Maintain minimum size */
    }

    /* Ensure all images within .page-support are responsive */
    .page-support img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-support__main-title {
        font-size: 1.8em;
    }

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

    .page-support__faq-item,
    .page-support__contact-card,
    .page-support__guide-card {
        padding: 20px;
    }

    .page-support__faq-question {
        font-size: 1.1em;
    }

    .page-support__card-title {
        font-size: 1.2em;
    }
}