:root {
    --page-support-primary-color: #11A84E; /* Main */
    --page-support-secondary-color: #22C768; /* Auxiliary */
    --page-support-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-support-card-bg: #11271B;
    --page-support-bg: #08160F;
    --page-support-text-main: #F2FFF6;
    --page-support-text-secondary: #A7D9B8;
    --page-support-border-color: #2E7A4E;
    --page-support-glow-color: #57E38D;
    --page-support-gold-color: #F2C14E;
    --page-support-divider-color: #1E3A2A;
    --page-support-deep-green: #0A4B2C;
}

.page-support {
    font-family: Arial, sans-serif;
    color: var(--page-support-text-main);
    background-color: var(--page-support-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-support__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-support-text-main);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.page-support__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: bold;
    color: var(--page-support-text-main);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-support__subtitle,
.page-support__section-description {
    font-size: 1.1rem;
    color: var(--page-support-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0;
    background-color: var(--page-support-bg);
    overflow: hidden;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-support__hero-content {
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}