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

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

.page-support__hero {
    background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Darker blue to lighter blue */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E3A81D; /* Gold accent for title */
    position: relative;
    z-index: 1;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.page-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-size: 1em;
    position: relative;
    z-index: 1;
}

.page-support__btn--primary {
    background-color: #E3A81D;
    color: #0A2463;
}

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

.page-support__btn--secondary {
    background-color: #0A2463;
    color: #E3A81D;
    border: 1px solid #E3A81D;
}

.page-support__btn--secondary:hover {
    background-color: #1A3E7D;
    transform: translateY(-2px);
}

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

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

.page-support__faq {
    padding: 60px 0;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__accordion-group {
    max-width: 800px;
    width: 100%;
    margin-top: 30px;
}

.page-support__accordion-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.page-support__accordion-header::after {
    content: '\002B'; /* Plus sign */
    font-weight: bold;
    font-size: 1.2em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.page-support__accordion-content {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-support__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
}

.page-support__text-link {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
}

.page-support__text-link:hover {
    color: #E3A81D;
}

.page-support__faq-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.page-support__contact-intro {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #666;
}

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

.page-support__method-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

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

.page-support__method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #E3A81D;
}

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

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

.page-support__cta {
    background: linear-gradient(135deg, #E3A81D 0%, #F0B83E 100%); /* Gold to lighter gold */
    color: #0A2463;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A2463;
    position: relative;
    z-index: 1;
}

.page-support__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

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

.page-support__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }
    .page-support__cta-title {
        font-size: 2.2em;
    }
    .page-support__cta-description {
        font-size: 1.1em;
    }
    .page-support__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-support__btn {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-support__hero {
        padding: 60px 0;
    }
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-support__contact-methods {
        gap: 20px;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
}