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

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

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

.page-support__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(139,0,0,0) 70%);
    animation: page-support-pulse 10s infinite alternate;
    z-index: 0;
}

@keyframes page-support-pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

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

.page-support__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

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

.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: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
    cursor: pointer;
}

.page-support__faq-answer {
    font-size: 1em;
    color: #555;
    line-height: 1.7;
}

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

.page-support__contact-intro {
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #555;
}

.page-support__contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-support__contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-support__contact-card-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__contact-card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
}

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

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

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

.page-support__guide-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-support__guide-card-title {
    font-size: 1.3em;
    padding: 15px 20px 0;
    font-weight: bold;
}

.page-support__guide-link {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-link:hover {
    color: #FFD700;
}

.page-support__guide-description {
    font-size: 0.95em;
    color: #666;
    padding: 10px 20px 15px;
}

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

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

.page-support__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-support__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #660000;
}

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

.page-support__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
}

.page-support__btn--outline {
    background-color: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
}

.page-support__btn--outline:hover {
    background-color: #8B0000;
    color: #fff;
}

.page-support__btn--link {
    background: none;
    border: none;
    color: #8B0000;
    text-decoration: underline;
    padding: 0;
    font-size: 1em;
    font-weight: normal;
}

.page-support__btn--link:hover {
    color: #FFD700;
}

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

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

    .page-support__hero-buttons,
    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-support__faq-grid,
    .page-support__contact-options,
    .page-support__guide-grid {
        grid-template-columns: 1fr;
    }

    .page-support__contact-card {
        width: 100%;
        max-width: 350px;
    }

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

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

    .page-support__hero-description {
        font-size: 0.9em;
    }

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

    .page-support__faq-question {
        font-size: 1.2em;
    }

    .page-support__contact-card-title {
        font-size: 1.3em;
    }

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