.page-support {
    font-family: Arial, sans-serif;
    color: #333333; /* Text Main color for light background */
    background-color: #F5F7FA; /* Background color */
    line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px; /* Adjust as needed */
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #E53935; /* Main color as background for hero */
    color: #ffffff; /* White text for dark background */
    overflow: hidden; /* To contain image */
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-support__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
}

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

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Slightly faded background image */
    z-index: 1;
}

/* Buttons */
.page-support__cta-button,
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__cta-button,
.page-support__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    border: none;
}

.page-support__cta-button:hover,
.page-support__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-support__btn-secondary {
    background-color: #ffffff;
    color: #E53935;
    border: 2px solid #E53935;
}

.page-support__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #E53935;
    transform: translateY(-2px);
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #E53935; /* Main color for section titles */
}

.page-support__section-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

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

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

.page-support__faq-item {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-support__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Hide default marker */
    color: #333333;
}

.page-support__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-support__faq-qtext {
    flex-grow: 1;
}

.page-support__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #E53935;
}

.page-support__faq-item[open] .page-support__faq-toggle {
    content: "−"; /* Change toggle symbol when open */
}

.page-support__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #555555;
}

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

.page-support__faq-answer a {
    color: #E53935;
    text-decoration: underline;
}

.page-support__faq-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Guide Section */
.page-support__dark-section {
    background-color: #E53935; /* Main color */
    color: #ffffff;
    padding: 60px 0;
}

.page-support__dark-section .page-support__section-title {
    color: #ffffff;
}

.page-support__dark-section .page-support__section-intro {
    color: #f0f0f0;
}

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

.page-support__guide-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for cards on dark bg */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 250px;
    transition: transform 0.3s ease;
}

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

.page-support__guide-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-support__guide-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
    color: #f0f0f0;
}

.page-support__guide-image {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Additional Info Section */
.page-support__additional-info {
    padding: 60px 0;
    background-color: #F5F7FA; /* Light background */
}

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

.page-support__info-card {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-support__info-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
}

.page-support__info-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #555555;
    flex-grow: 1;
}

.page-support__documents-image {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Contact CTA Section */
.page-support__contact-cta {
    padding: 60px 0;
    background-color: #E53935; /* Main color */
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__contact-content {
    position: relative;
    z-index: 2;
}

.page-support__contact-cta .page-support__section-title {
    color: #ffffff;
}

.page-support__contact-cta .page-support__section-intro {
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-support__contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Slightly faded background image */
    z-index: 1;
}

/* General image styling for min size enforcement */
.page-support img:not(.page-support__hero-image):not(.page-support__contact-image) {
    min-width: 200px;
    min-height: 200px;
}


/* Responsive styles */
@media (max-width: 768px) {
    .page-support {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-support__container {
        padding: 15px;
    }

    .page-support__hero-section {
        min-height: 400px;
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-support__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-support__hero-description {
        font-size: 1rem;
    }

    .page-support__section-title {
        font-size: 1.8rem;
    }

    .page-support__section-intro {
        font-size: 0.95rem;
    }

    /* Images */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-support__hero-section,
    .page-support__faq-section,
    .page-support__guide-section,
    .page-support__additional-info,
    .page-support__contact-cta,
    .page-support__video-section, /* Added if video section is present */
    .page-support__video-container,
    .page-support__video-wrapper,
    .page-support__faq-item,
    .page-support__guide-card,
    .page-support__info-card,
    .page-support__cta-buttons,
    .page-support__button-group,
    .page-support__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    /* Buttons */
    .page-support__cta-button,
    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support a[class*="button"],
    .page-support a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px; /* Add some space between stacked buttons */
    }
    
    .page-support__guide-steps,
    .page-support__info-cards {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }

    .page-support__guide-card,
    .page-support__info-card {
        min-height: auto; /* Allow height to adjust */
        padding: 20px;
    }

    .page-support__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

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

/* Video specific styles, if a video section were added */
.page-support video,
.page-support__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-support__video-section,
.page-support__video-container,
.page-support__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}