/* style/support.css */

/* Base styles for the support page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

/* Fixed Header Spacing */
.page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

/* Hero Section */
.page-support__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #26A9E0, #1a7bbd); /* Brand color gradient */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-support__hero-section .page-support__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-support__hero-content {
    max-width: 800px;
}