.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as per instruction, relying on body padding-top from shared.css */
    padding-bottom: 40px;
    background-color: #f8f8f8; /* Light background for the section */
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default for desktop */
}

.page-support__hero-content {
    max-width: 900px;
    margin-top: 30px;
    padding: 0 20px;
}

.page-support__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size */
    color: #26A9E0;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.page-support__hero-description {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-support__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__faq-btn,
.page-support__guide-link,
.page-support__card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

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

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

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

.page-support__btn-secondary:hover {
    background: #f0f8ff;
    color: #1f8ac9;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__troubleshooting-section,
.page-support__policies-section,
.page-support__why-choose-section,
.page-support__latest-updates-section {
    padding: 60px 0;
}

.page-support__light-bg {
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text for light background */
}

.page-support__dark-bg {
    background-color: #26A9E0; /* Brand color as dark background */
    color: #ffffff; /* White text for dark background */
}