:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000000; /* Black */
    --text-color-light-bg: #333333; /* Dark text for light backgrounds */
    --text-color-dark-bg: #ffffff; /* Light text for dark backgrounds */
    --background-light: #f4f4f4; /* Body background */
    --background-dark: #000000; /* For dark sections */
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
}

.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-light-bg); /* Default text color for light body background */
    background-color: var(--background-light); /* Inherited from body via shared.css */
}

/* Fixed Header Offset - using var(--header-offset) */
.page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Desktop default, overridden by media query if shared doesn't set body padding */
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Adjust padding-top with var(--header-offset) */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color-dark-bg); /* White text on dark/gold background */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-support__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-support__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-support__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    filter: none; /* Absolutely no filter */
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-color-dark-bg);
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color-dark-bg);
}

.page-support__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Ensure buttons wrap on mobile */
}

.page-support__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for mobile responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
}

.page-support__cta-button--primary {
    background: var(--primary-color);
    color: var(--text-color-dark-bg);
    border: 2px solid var(--primary-color);
}

.page-support__cta-button--primary:hover {
    background: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button--secondary {
    background: var(--secondary-color);
    color: var(--text-color-dark-bg);
    border: 2px solid var(--secondary-color);
}

.page-support__cta-button--secondary:hover {
    background: #1a1a1a; /* Slightly lighter black */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-support__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-color-light-bg);
}

.page-support__section-title--light {
    color: var(--text-color-dark-bg);
}

.page-support__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-color-light-bg);
}

.page-support__section-description--light {
    color: var(--text-color-dark-bg);
}

/* Philosophy Section */
.page-support__philosophy-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-support__philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__philosophy-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-support__philosophy-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-support__philosophy-text {
    color: var(--text-color-light-bg);
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-support__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__contact-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__contact-item img {
    width: 200px; /* Min size 200px */
     /* Min size 200px, but aspect ratio can make it smaller */
    max-width: 100%;
    height: auto; /* Ensure aspect ratio is maintained */
    margin-bottom: 20px;
    border-radius: 4px;
    object-fit: cover;
    filter: none; /* Absolutely no filter */
}

.page-support__contact-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-support__contact-text {
    flex-grow: 1; /* Allow text to take available space */
    margin-bottom: 20px;
    color: var(--text-color-light-bg);
}

.page-support__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--text-color-dark-bg);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for mobile responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
}

.page-support__btn-primary:hover {
    background: #e6c200; /* Slightly darker gold */
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-support__text-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-support__text-link:hover {
    color: #e6c200;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    background-color: var(--secondary-color); /* Black background */
    color: var(--text-color-dark-bg); /* White text */
}

.page-support__faq-list {
    margin-top: 40px;
    margin-bottom: 40px;
}