/* 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 15px;
}

.page-support__hero {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 60px 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: 1;
}

.page-support__hero > .page-support__container {
    position: relative;
    z-index: 2;
}

.page-support__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.page-support__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    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, transform 0.3s ease;
    margin: 10px;
    font-size: 1em;
}

.page-support__btn--primary {
    background-color: #ffc107;
    color: #007bff;
    border: 2px solid #ffc107;
}

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

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

.page-support__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-support__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-support__faq-section, .page-support__contact-channels, .page-support__resource-center, .page-support__cta-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-support__faq-section:nth-of-type(odd), .page-support__resource-center:nth-of-type(odd) {
    background-color: #fff;
}

.page-support__faq-visual {
    display: block;
    max-width: 600px;
    height: auto;
    margin: 0 auto 40px auto;
}

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

.page-support__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-support__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-support__faq-answer {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

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

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

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

.page-support__channel-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-support__channel-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-support__channel-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-support__channel-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

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

.page-support__resource-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-support__resource-title {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-support__resource-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.page-support__cta-section {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-support__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.page-support__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

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

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

    .page-support__hero, .page-support__cta-section {
        padding: 40px 0;
    }

    .page-support__faq-grid, .page-support__channel-grid, .page-support__resource-grid {
        grid-template-columns: 1fr;
    }

    .page-support__faq-visual {
        max-width: 90%;
    }
}

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

    .page-support__description, .page-support__section-intro, .page-support__cta-text {
        font-size: 1em;
    }

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

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

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