/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #0A2463; /* Main text color, high contrast on light backgrounds */
    background-color: #f8f8f8; /* Light background for general content */
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__section-subtitle {
    font-size: 1.1em;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Hero Section */
.page-support__hero {
    background: linear-gradient(135deg, #0A2463, #3A5B9C); /* Dark blue gradient */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.page-support__hero-content {
    max-width: 800px;
    z-index: 2;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700; /* Gold for emphasis */
}

.page-support__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for readability */
}

.page-support__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__hero-button:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
}

/* FAQ Section */
.page-support__faq {
    padding: 60px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

.page-support__faq-item {
    background-color: #F0F5F8; /* Light blue-gray for FAQ items */
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-support__faq-item:hover {
    background-color: #E2EBF0;
}

.page-support__faq-question {
    font-size: 1.2em;
    color: #0A2463; /* Dark blue question text */
    margin: 0;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #333; /* Dark gray answer text */
    font-size: 1em;
    line-height: 1.6;
    padding-top: 0;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

.page-support__inline-link {
    color: #0A2463;
    text-decoration: underline;
}

.page-support__inline-link:hover {
    color: #FFD700;
}

.page-support__faq-illustration {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
    height: auto;
    opacity: 0.8;
}

/* Contact Section */
.page-support__contact {
    padding: 60px 0;
    background-color: #F0F5F8; /* Light blue-gray background */
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__channel-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__channel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-support__channel-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-support__channel-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-support__channel-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.page-support__channel-button {
    display: inline-block;
    background-color: #0A2463; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-support__channel-button:hover {
    background-color: #1A3C7C; /* Slightly lighter blue on hover */
}

.page-support__contact-illustration {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 400px;
    height: auto;
    opacity: 0.8;
}

/* Resources Section */
.page-support__resources {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-support__resource-card {
    display: block;
    background-color: #F0F5F8;
    border-radius: 10px;
    text-decoration: none;
    color: #0A2463;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.page-support__resource-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.page-support__resource-title {
    font-size: 1.3em;
    padding: 15px 20px 5px 20px;
    margin: 0;
    font-weight: bold;
    color: #0A2463;
}

.page-support__resource-text {
    font-size: 0.95em;
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__hero-description {
        font-size: 1.1em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support__hero {
        padding: 60px 15px;
    }
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__faq, .page-support__contact, .page-support__resources {
        padding: 40px 0;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-subtitle {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-support__channel-item, .page-support__resource-card {
        padding: 25px;
    }
    .page-support__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__hero-description {
        font-size: 0.9em;
    }
    .page-support__faq-question {
        font-size: 1.1em;
    }
    .page-support__channel-title {
        font-size: 1.3em;
    }
    .page-support__resource-title {
        font-size: 1.1em;
    }
}