/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

.page-support__hero-section {
    background: linear-gradient(135deg, #0A2463, #3A5B9F);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,blue,dark]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-support__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-support__search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-support__search-input {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1em;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__search-button {
    background-color: #FFD700;
    color: #0A2463;
    border: none;
    padding: 15px 25px;
    border-radius: 0 8px 8px 0;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.page-support__search-button:hover {
    background-color: #e6c200;
}

.page-support__quick-links {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.page-support__quick-link {
    color: #FFD700;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    padding: 8px 15px;
    border: 1px solid #FFD700;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.page-support__quick-link:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-support__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-support__faq-section {
    padding: 60px 0;
    background-color: #fff;
}

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

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

.page-support__faq-question {
    width: 100%;
    background-color: #0A2463;
    color: #fff;
    padding: 18px 25px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
    content: '\002B'; /* Plus sign */
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}

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

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

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

.page-support__faq-answer p {
    margin-bottom: 10px;
    color: #555;
}

.page-support__faq-answer a {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
}

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

.page-support__contact-section {
    padding: 60px 0;
    background-color: #f4f7f6;
    text-align: center;
}

.page-support__contact-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

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

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

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

.page-support__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #0A2463;
}

.page-support__method-card h3 {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-support__method-card p {
    color: #777;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-support__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
    text-align: center;
}

.page-support__button--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-support__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-support__button--secondary {
    background-color: transparent;
    color: #0A2463;
    border: 2px solid #0A2463;
}

.page-support__button--secondary:hover {
    background-color: #0A2463;
    color: #fff;
    transform: translateY(-2px);
}

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

.page-support__cta-section {
    background: linear-gradient(90deg, #0A2463, #1A3C7C);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:geometric,abstract,pattern,darkblue]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-support__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.page-support__cta-image {
    max-width: 150px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__cta-text h2 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 2.8em;
}

.page-support__cta-text p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

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

    .page-support__hero-subtitle {
        font-size: 1em;
    }

    .page-support__search-box {
        flex-direction: column;
        align-items: center;
    }

    .page-support__search-input {
        border-radius: 8px;
        margin-bottom: 15px;
        max-width: 90%;
    }

    .page-support__search-button {
        border-radius: 8px;
        width: 90%;
    }

    .page-support__quick-link {
        margin: 8px;
        padding: 6px 12px;
        font-size: 0.9em;
    }

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

    .page-support__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-support__faq-answer.open {
        max-height: 300px; /* Adjust for smaller screens */
    }

    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }

    .page-support__cta-content {
        flex-direction: column;
    }

    .page-support__cta-text h2 {
        font-size: 2.2em;
    }

    .page-support__cta-text p {
        font-size: 1em;
    }
}

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

    .page-support__quick-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-support__quick-link {
        width: calc(50% - 20px);
        margin: 5px;
    }

    .page-support__cta-image {
        max-width: 100px;
    }
}