/* style/support.css */

/* Base Styles for the Support Page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #f8f9fa; /* Light background for the page content */
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff; /* White text for primary background */
    padding: 80px 0;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-support__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Ensure padding and border are included in width */
}

.page-support__btn-primary {
    background-color: #EA7C07; /* Login color, used for primary CTA */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

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

.page-support__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0; /* Primary brand color for text */
    border: 2px solid #ffffff;
}

.page-support__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #1e87b7;
    border-color: #f0f0f0;
}

/* Section Titles & Descriptions */
.page-support__section-title {
    font-size: 2.2em;
    color: #26A9E0; /* Primary brand color */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-support__method-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-support__method-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 200px; /* Max width for consistency */
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-support__method-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__method-text {
    color: #666666;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes button to bottom */
}

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

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

.page-support__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* Important for max-height transition */
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #f5f5f5;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg); /* For '-' symbol, '+' rotates 45 degrees */
    /* content: '−'; Handled by JS for text content */
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding, will expand */
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666666;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px 20px 25px; /* Expanded padding */
}

.page-support__faq-answer p {
    margin-bottom: 10px;
    line-height: 1.7;
}
.page-support__faq-answer p:last-child {
    margin-bottom: 0;
}

/* Quick Guides Section */
.page-support__quick-guides {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.page-support__guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-support__guide-image {
    width: 100%;
    height: auto;
    max-width: 300px; /* Adjust as needed */
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-support__guide-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-support__guide-title a:hover {
    color: #1e87b7;
    text-decoration: underline;
}

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

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

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

.page-support__commitment-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-support__commitment-icon {
    width: 100%;
    height: auto;
    max-width: 150px; /* Smaller icons for commitment section */
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.page-support__commitment-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__commitment-text {
    color: #666666;
}

/* Final CTA Section */
.page-support__final-cta {
    padding: 80px 0;
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff;
    text-align: center;
}

.page-support__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-support__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__main-title {
        font-size: 2.5em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Hero Section */
    .page-support__hero-section {
        padding: 60px 0;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding is correct */
    }
    .page-support__main-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to container */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
   }}