/* style/support.css */

/* Base Styles for .page-support */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for dark background */
    background-color: var(--background-color, #08160F); /* Ensure dark background */
    scroll-behavior: smooth;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background-color, #08160F);
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 500px; /* Limit height for hero image */
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
}

.page-support__hero-content {
    position: relative; /* Not absolute to avoid overlapping the image */
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    margin-top: 40px; /* Space between image and content */
}

.page-support__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
}

.page-support__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* General Section Styling */
.page-support__section {
    padding: 60px 20px;
    background-color: var(--background-color, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-support__container {
    width: 100%; /* Ensure container takes full width on desktop for proper max-width */
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-support__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    text-align: center;
    margin-bottom: 40px;
}

.page-support__text-block {
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}