.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main color, chosen for dark background */
    background: #0A0A0A; /* Background color */
}

/* Fixed header spacing */
.page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Desktop default padding-top */
    background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Main and Auxiliary colors */
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-support__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2; /* Ensure content is above image overlay if any */
}

.page-support__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: #0A0A0A; /* Dark text for light gradient background */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.1rem;
    color: #333333; /* Dark text for light gradient background */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #0A0A0A; /* Dark text for button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__hero-image-wrapper {
    position: relative; /* Changed from absolute to relative to be in normal flow */
    width: 100%;
    height: auto;
    margin-top: 40px; /* Space between content and image */
    text-align: center;
}

.page-support__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
}

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

.page-support__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-support__section-intro {
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main color */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Quick Links Section */
.page-support__quick-links-section {
    background: #0A0A0A; /* Background color */
    padding: 60px 0;
}

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

.page-support__quick-link-card {
    background: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #FFF6D6; /* Text Main color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.page-support__quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #FFD36B; /* Glow color on hover */
}

.page-support__quick-link-title {
    font-size: 1.5rem;
    color: #FFD36B; /* Auxiliary color */
    margin-bottom: 10px;
    font-weight: 600;
}