/* style/support.css */

/* Base styles for the page content */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background from shared.css */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #ffffff; /* Light text for dark body background */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #f0f0f0; /* Slightly lighter for readability */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Hero Section */
.page-support__hero-section {
    background: linear-gradient(135deg, #017439, #004d2c); /* Brand color gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 900;
}

.page-support__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-support__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

.page-support__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
    transform: translateY(-2px);
}

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

.page-support__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-support__btn-link {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
    padding: 10px 20px;
    font-size: 0.9em;
}

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

.page-support__btn-lg {
    padding: 18px 35px;
    font-size: 1.1em;
}

/* Channels Section */
.page-support__channels-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

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

.page-support__channel-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-support__channel-card:hover {
    transform: translateY(-5px);
}

.page-support__channel-icon {
    width: 400px; /* Use attribute width for display area */
    height: 300px; /* Use attribute height for display area */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-support__channel-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-support__channel-text {
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.page-support__faq-item-title {
    font-size: 1.2em;
    color: #ffffff;
    margin: 0;
    flex-grow: 1;
}

.page-support__faq-toggle {
    font-size: 1.8em;
    color: #017439;
    font-weight: bold;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg);
    color: #C30808;
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #e0e0e0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px 25px;
}

.page-support__faq-answer p {
    margin: 0;
    color: #e0e0e0;
}

.page-support__faq-answer a {
    color: #017439;
    text-decoration: underline;
}

.page-support__faq-answer a:hover {
    color: #00a05a;
}

/* Guide Section */
.page-support__guide-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

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

.page-support__guide-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
}

.page-support__guide-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-support__guide-card-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-support__guide-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-card-title a:hover {
    color: #017439;
}

.page-support__guide-card-text {
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Security Section */
.page-support__security-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

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

.page-support__security-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-support__security-item:hover {
    transform: translateY(-5px);
}

.page-support__security-icon {
    width: 250px; /* Use attribute width for display area */
    height: 250px; /* Use attribute height for display area */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__security-item-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-support__security-item-text {
    color: #e0e0e0;
}

.page-support__security-item-text a {
    color: #017439;
    text-decoration: underline;
}

.page-support__security-item-text a:hover {
    color: #00a05a;
}

/* Policies Section */
.page-support__policies-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-support__policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-support__policy-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__policy-link:hover {
    background-color: #017439;
    transform: translateY(-2px);
    border-color: #017439;
}

/* Contact CTA Section */
.page-support__contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #017439, #004d2c);
    text-align: center;
}

/* Commitment Section */
.page-support__commitment-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}