/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2463; /* Primary dark blue background */
    line-height: 1.6;
}

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

.page-support__hero {
    background: linear-gradient(135deg, #0A2463, #2A4F8F); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.page-support__title {
    font-size: 3.5em;
    color: #E3B505; /* Golden secondary color for emphasis */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__subtitle {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-support__section-title {
    font-size: 2.5em;
    color: #E3B505; /* Golden secondary color */
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
    position: relative;
}

.page-support__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E3B505;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-support__description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-button,
.page-support__contact-button,
.page-support__main-cta-button,
.page-support__secondary-cta-button {
    display: inline-block;
    background-color: #E3B505; /* Golden button */
    color: #0A2463; /* Dark blue text on golden button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 10px;
}

.page-support__cta-button:hover,
.page-support__contact-button:hover,
.page-support__main-cta-button:hover,
.page-support__secondary-cta-button:hover {
    background-color: #f5db9c; /* Lighter golden on hover */
    transform: translateY(-3px);
}

/* FAQ Section */
.page-support__faq {
    background-color: #1a3a7c; /* Slightly lighter blue for contrast */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-support__faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-support__faq-item {
    background-color: #0A2463; /* Primary dark blue for FAQ items */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #E3B505;
    transition: transform 0.3s ease;
}

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

.page-support__faq-question {
    font-size: 1.4em;
    color: #E3B505; /* Golden for questions */
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-support__faq-answer {
    font-size: 1.05em;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-support__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

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

.page-support__faq-image {
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 300px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
    transform: rotate(10deg);
}

/* Contact Section */
.page-support__contact {
    padding: 60px 0;
    background-color: #0A2463;
    position: relative;
    overflow: hidden;
}

.page-support__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-support__contact-item {
    background-color: #1a3a7c; /* Lighter blue for contact items */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border-top: 5px solid #E3B505;
}

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

.page-support__contact-method-title {
    font-size: 1.6em;
    color: #E3B505;
    margin-bottom: 15px;
}

.page-support__contact-item p {
    color: #cccccc;
    margin-bottom: 25px;
}

.page-support__contact-image {
    position: absolute;
    top: -55px;
    left: -55px;
    width: 350px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
    transform: rotate(-15deg);
}

/* Guides Section */
.page-support__guides {
    background-color: #1a3a7c;
    padding: 60px 0;
}

.page-support__guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.page-support__guide-item {
    background-color: #0A2463;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-bottom: 5px solid transparent;
}

.page-support__guide-item:hover {
    transform: translateY(-5px);
    background-color: #2A4F8F;
    border-bottom-color: #E3B505;
}

.page-support__guide-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #E3B505);
}

.page-support__guide-title {
    font-size: 1.5em;
    color: #E3B505;
    margin-bottom: 10px;
}

.page-support__guide-item p {
    color: #cccccc;
    font-size: 0.95em;
}

/* Promotion CTA Section */
.page-support__promotion-cta {
    background: linear-gradient(45deg, #0A2463, #E3B505); /* Gradient background */
    padding: 80px 0;
    text-align: center;
}

.page-support__promotion-cta .page-support__section-title {
    color: #0A2463;
    text-shadow: none;
}

.page-support__promotion-cta .page-support__section-title::after {
    background-color: #0A2463;
}

.page-support__promotion-cta .page-support__description {
    color: #0A2463;
    margin-bottom: 50px;
}

.page-support__cta-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-support__main-cta-button {
    background-color: #0A2463;
    color: #E3B505;
    border: 2px solid #E3B505;
}

.page-support__main-cta-button:hover {
    background-color: #2A4F8F;
    border-color: #f5db9c;
}

.page-support__secondary-cta-button {
    background-color: transparent;
    color: #0A2463;
    border: 2px solid #0A2463;
}

.page-support__secondary-cta-button:hover {
    background-color: #0A2463;
    color: #E3B505;
}

/* Keyword highlighting */
.page-support__keyword {
    color: #E3B505;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__title {
        font-size: 2.5em;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__hero,
    .page-support__faq,
    .page-support__contact,
    .page-support__guides,
    .page-support__promotion-cta {
        padding: 40px 0;
    }

    .page-support__faq-image,
    .page-support__contact-image {
        display: none;
    }

    .page-support__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-support__cta-button,
    .page-support__contact-button,
    .page-support__main-cta-button,
    .page-support__secondary-cta-button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-support__title {
        font-size: 2em;
    }

    .page-support__subtitle {
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__faq-question {
        font-size: 1.2em;
    }

    .page-support__contact-method-title {
        font-size: 1.4em;
    }

    .page-support__guide-title {
        font-size: 1.3em;
    }
}