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

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

.page-support__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: page-support__float 10s ease-in-out infinite;
    z-index: 0;
}

.page-support__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    animation: page-support__float 12s reverse ease-in-out infinite;
    z-index: 0;
}

@keyframes page-support__float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

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

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

.page-support__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-support__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    margin: 10px;
}

.page-support__btn--primary {
    background-color: #ffc107;
    color: #0056b3;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-support__btn--primary:hover {
    background-color: #e0a800;
    color: #003f80;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-support__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-support__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.page-support__channels {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-support__channel-item {
    background-color: #fefefe;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__channel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-support__channel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.3));
}

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

.page-support__channel-description {
    color: #555;
    margin-bottom: 25px;
}

.page-support__faq {
    padding: 80px 0;
    background-color: #f2f7fc;
}

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

.page-support__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-support__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #ffc107;
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    font-size: 1.1em;
    color: #444;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
    display: none;
}

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

.page-support__faq-answer a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-support__cta {
    background: linear-gradient(45deg, #007bff, #0056b3);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.page-support__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffc107;
}

.page-support__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

@media (max-width: 992px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-support__hero {
        padding: 80px 0;
    }
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__channel-grid {
        grid-template-columns: 1fr;
    }
    .page-support__channels,
    .page-support__faq,
    .page-support__cta {
        padding: 60px 0;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__cta-title {
        font-size: 2em;
    }
    .page-support__cta-description {
        font-size: 1.1em;
    }
    .page-support__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__section-title {
        font-size: 1.6em;
    }
    .page-support__faq-question {
        font-size: 1.2em;
    }
    .page-support__faq-answer {
        font-size: 1em;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
}