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

.page-support__dark-section {
    background-color: #1a1a1a; /* A darker background for sections to ensure contrast */
    color: #ffffff;
    padding: 60px 0;
}

.page-support__light-bg {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 0;
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    padding-top: var(--header-offset, 120px); /* Ensure header offset */
    overflow: hidden;
    background: linear-gradient(90deg, #26A9E0 0%, #1a1a1a 100%); /* Mix brand color with dark background */
}

.page-support__hero-content {
    flex: 1;
    padding-right: 40px;
    z-index: 1;
}

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

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

.page-support__hero-buttons {
    display: flex;
    gap: 20px;
}

.page-support__btn-primary,
.page-support__btn-secondary {
    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, border-color 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.page-support__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

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

.page-support__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-support__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.page-support__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Titles and Descriptions */
.page-support__section-title {
    font-size: 2.5em;
    color: inherit; /* Inherit from section for contrast */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.1em;
    color: inherit; /* Inherit from section for contrast */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* FAQ Section */
.page-support__faq-list {
    margin-top: 30px;
}

.page-support__faq-item {
    background-color: #f8f8f8; /* Light background for FAQ items */
    color: #333333;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.page-support__faq-item[open] {
    background-color: #eaf6fc; /* Lighter background when open, using a tint of brand color */
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    background-color: transparent;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-support__faq-item[open] .page-support__faq-question {
    border-bottom-color: #26A9E0;
    color: #26A9E0;
}

.page-support__faq-question::-webkit-details-marker {
    display: none;
}

.page-support__faq-question:hover {
    background-color: #f0f0f0;
}

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

.page-support__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
    background-color: #ffffff; /* White background for answer content */
}

/* Contact Section */
.page-support__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__contact-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

.page-support__contact-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.page-support__contact-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffffff;
}

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

/* Guide Cards Section */
.page-support__guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__guide-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #333333;
    transition: transform 0.3s ease;
}

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

.page-support__guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-support__guide-title {
    font-size: 1.5em;
    padding: 20px 20px 10px;
    color: #26A9E0;
    font-weight: bold;
}

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

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

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

.page-support__btn-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px;
    text-decoration: none;
    color: #26A9E0;
    font-weight: bold;
    border: 2px solid #26A9E0;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}