/* style/support.css */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #ffffff; /* Default body background is white */
}

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

.page-support__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #017439; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.page-support__section-title--light {
    color: #ffffff; /* White color for titles on dark background */
}

.page-support__text-block {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-support__text-block--light {
    color: #f0f0f0; /* Light text for dark background */
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    margin-bottom: 40px;
    overflow: hidden;
    background-color: #f5f5f5; /* Light background for the section */
}

.page-support__hero-image {
    width: 100%;
    height: 600px; /* Fixed height for desktop */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page-support__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover for desktop, contain for mobile */
    display: block;
}

.page-support__hero-content {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    padding: 0 15px;
}

.page-support__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Clamp for H1 font size */
    font-weight: 800;
    color: #017439;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-support__description {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
}

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link,
.page-support__resource-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 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: #C30808; /* Custom color for primary action */
    color: #FFFF00; /* Custom font color for primary action */
    border: 2px solid #C30808;
}

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

.page-support__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-support__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* Main Content Section */
.page-support__main-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-support__topic-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.page-support__topic-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    display: block; /* Ensure block for responsive images */
    width: 100%; /* Ensure image fills card width for consistency */
    min-height: 200px; /* Minimum size requirement */
}

.page-support__card-title {
    font-size: 22px;
    font-weight: 600;
    color: #017439;
    margin-bottom: 15px;
}

.page-support__card-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to grow */
}

.page-support__btn-link {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
}

.page-support__btn-link:hover {
    background-color: #017439;
    color: #ffffff;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #017439; /* Dark brand color for background */
}

.page-support__faq-illustration {
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 10px;
    object-fit: cover;
    width: 100%; /* Ensure responsive */
    min-height: 200px; /* Minimum size requirement */
}

.page-support__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}