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

.page-support__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1a3e7a 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-content {
    max-width: 900px;
    z-index: 1;
}

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

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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.2s ease;
    text-align: center;
}

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

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

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

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

.page-support__faq-section, .page-support__contact-section, .page-support__cta-bottom {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__section-title {
    font-size: 2em;
    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: #E3B505;
    border-radius: 2px;
}

.page-support__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-support__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
    font-size: 1.15em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__faq-answer {
    color: #555;
    font-size: 0.95em;
}

.page-support__faq-answer a {
    color: #E3B505;
    text-decoration: none;
    font-weight: bold;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

.page-support__icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 8px;
}

.page-support__contact-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

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

.page-support__contact-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-support__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #E3B505; /* For SVG icons */
}

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

.page-support__contact-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-support__cta-bottom {
    text-align: center;
    background-color: #0A2463;
    color: #fff;
    padding: 50px 20px;
    border-radius: 8px;
    margin-top: 60px;
}

.page-support__cta-title {
    font-size: 2.2em;
    color: #E3B505;
    margin-bottom: 15px;
}

.page-support__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Responsive adjustments */
@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__faq-grid,
    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .page-support__hero {
        padding: 60px 15px;
    }

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

    .page-support__faq-section,
    .page-support__contact-section,
    .page-support__cta-bottom {
        margin: 20px auto;
        padding: 15px;
    }

    .page-support__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-support__contact-card {
        padding: 20px;
    }
}