/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark sections */
    background-color: #001f3f; /* Dark background for overall page */
}

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

.page-support__hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #001f3f 0%, #000a1a 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-support__hero-section .page-support__container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-support__hero-title {
    font-size: 3.5em;
    color: #ffcc00;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.page-support__section-title {
    font-size: 2.8em;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

.page-support__section-subtitle {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-support__btn--primary {
    background-color: #ffcc00;
    color: #001f3f;
    border: 2px solid #ffcc00;
}

.page-support__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #000a1a;
}

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

.page-support__btn--secondary:hover {
    background-color: #ffcc00;
    color: #001f3f;
}

.page-support__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* FAQ Section */
.page-support__faq-section {
    background-color: #001a33; /* Slightly lighter dark blue */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-support__faq-section .page-support__container {
    position: relative;
    z-index: 2;
}

.page-support__faq-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%; /* Adjusted for better visibility */
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

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

.page-support__faq-item {
    background-color: #002e5c;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-support__faq-question {
    padding: 20px 25px;
    font-size: 1.3em;
    color: #ffcc00;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #002e5c;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

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

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

.page-support__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-support__faq-answer p {
    margin-bottom: 15px;
}

/* Contact Section */
.page-support__contact-section {
    padding: 80px 0;
    background-color: #001f3f;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.page-support__contact-section .page-support__container {
    position: relative;
    z-index: 1;
}

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

.page-support__contact-item {
    background-color: #002e5c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-support__contact-item:hover {
    transform: translateY(-10px);
}

.page-support__contact-title {
    font-size: 1.8em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.page-support__contact-item p {
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Resources Section */
.page-support__resources-section {
    background-color: #001a33;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-support__resources-section .page-support__container {
    position: relative;
    z-index: 2;
}

.page-support__resources-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
}

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

.page-support__resource-item {
    background-color: #002e5c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-support__resource-item:hover {
    transform: translateY(-10px);
}

.page-support__resource-title {
    font-size: 1.6em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.page-support__resource-item p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.page-support__link {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__link:hover {
    color: #e6b800;
    text-decoration: underline;
}

/* CTA Section */
.page-support__cta-section {
    background-color: #ffcc00;
    padding: 80px 0;
    text-align: center;
    color: #001f3f;
}

.page-support__cta-title {
    font-size: 3em;
    color: #001f3f;
    margin-bottom: 20px;
}

.page-support__cta-description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 40px;
}

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

.page-support__cta-section .page-support__btn--primary {
    background-color: #001f3f;
    color: #ffcc00;
    border-color: #001f3f;
}

.page-support__cta-section .page-support__btn--primary:hover {
    background-color: #000a1a;
    border-color: #000a1a;
    color: #ffe0c0;
}

.page-support__cta-section .page-support__btn--secondary {
    background-color: #ffffff;
    color: #001f3f;
    border-color: #ffffff;
}

.page-support__cta-section .page-support__btn--secondary:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #000a1a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__section-title {
        font-size: 2.2em;
    }
    .page-support__faq-image {
        width: 100%;
        height: 50%;
        bottom: 0;
        right: 0;
        opacity: 0.1;
    }
    .page-support__contact-methods, .page-support__resource-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-subtitle {
        font-size: 0.9em;
    }
    .page-support__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer {
        padding: 0 20px 15px;
    }
    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__section-title {
        font-size: 1.6em;
    }
    .page-support__faq-item, .page-support__contact-item, .page-support__resource-item {
        padding: 20px;
    }
    .page-support__contact-title, .page-support__resource-title {
        font-size: 1.5em;
    }
    .page-support__cta-title {
        font-size: 2em;
    }
}