/* style/support.css */

/* Base styles for the support page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly setting for contrast checks */
}

/* Header offset for fixed header */
.page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply header offset to the first section */
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    text-align: center;
    padding: 80px 0;
    background-color: #FFFFFF; /* Light background for hero */
    color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    margin-top: 40px;
}

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

.page-support__main-title {
    font-size: 2.8em;
    color: #017439; /* Brand color for main title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
    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;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-support__btn-primary {
    background-color: #017439; /* Main brand color */
    color: #FFFFFF;
    border: 2px solid #017439;
}

.page-support__btn-primary:hover {
    background-color: #005f2e; /* Darker shade for hover */
    border-color: #005f2e;
}

.page-support__btn-secondary {
    background-color: #FFFFFF;
    color: #017439; /* Main brand color for text */
    border: 2px solid #017439;
    margin-left: 15px;
}