/* style/support.css */

/* Base styles for the support page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Deep gray for text on light background */
    background-color: #FFFFFF; /* Body background is light */
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding: 120px 0 60px 0; /* Adjusted for header offset on desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    color: #ffffff; /* White text on dark background */
    background-color: #017439; /* Brand primary color for hero background */
}

.page-support__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
    z-index: 1;
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* General Button Styles */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-register,
.page-support__btn-login {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-primary {
    background-color: #017439; /* Brand primary color */
    color: #FFFFFF;
    border: 2px solid #017439;
    margin: 0 10px 10px 0;
}

.page-support__btn-primary:hover {
    background-color: #005f2e; /* Slightly darker green */
    border-color: #005f2e;
}

.page-support__btn-secondary {
    background-color: #FFFFFF;
    color: #017439;
    border: 2px solid #017439;
    margin: 0 10px 10px 0;
}

.page-support__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2e;
    border-color: #005f2e;
}

/* Specific colors for Register/Login buttons */
.page-support__btn-register {
    background-color: #C30808; /* Red for Register */
    color: #FFFF00; /* Yellow font for Register */
    border: 2px solid #C30808;
    margin-right: 15px;
}

.page-support__btn-register:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-support__btn-login {
    background-color: #C30808; /* Red for Login */
    color: #FFFF00; /* Yellow font for Login */
    border: 2px solid #C30808;
}