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

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

.page-support__hero {
    background: linear-gradient(135deg, #007bff, #4da3ff);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-support__hero-content {
    max-width: 800px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-support__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.page-support__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

.page-support__faq {
    background-color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-support__faq-list {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__faq-item {
    border-bottom: 1px solid #eee;
}

.page-support__faq-item:last-child {
    border-bottom: none;
}

.page-support__faq-question {
    background-color: #f1f8ff;
    color: #007bff;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
    transform: rotate(45deg);
}

.page-support__faq-question:hover {
    background-color: #e6f2ff;
}

.page-support__faq-answer {
    padding: 20px 25px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.page-support__faq-answer p {
    margin-bottom: 0;
    color: #555;
}

.page-support__faq-image {
    position: absolute;
    bottom: -50px;
    left: -50px;
    opacity: 0.1;
    width: 300px;
    height: auto;
    z-index: 0;
    transform: rotate(-15deg);
}

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

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

.page-support__contact-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #007bff;
}

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

.page-support__contact-item p {
    color: #666;
    margin-bottom: 25px;
}

.page-support__contact-image {
    position: absolute;
    top: -50px;
    right: -50px;
    opacity: 0.08;
    width: 350px;
    height: auto;
    z-index: 0;
    transform: rotate(15deg);
}

.page-support__guides {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

.page-support__guide-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-support__guide-item h3 {
    font-size: 1.5em;
    color: #007bff;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-support__guide-item p {
    color: #666;
    padding: 0 20px 20px;
    margin: 0;
}

.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, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1em;
}

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

.page-support__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.5);
}

.page-support__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

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

.page-support__btn--link {
    background-color: transparent;
    color: #007bff;
    padding: 10px 20px;
    border: 1px solid #007bff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 20px;
}

.page-support__btn--link:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

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

    .page-support__hero-subtitle {
        font-size: 1.1em;
    }

    .page-support__contact-image, .page-support__faq-image {
        display: none;
    }
}

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

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

    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-support__faq-answer {
        padding: 15px 20px;
    }

    .page-support__contact-item, .page-support__guide-item {
        padding: 25px;
    }

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

    .page-support__guide-item h3 {
        font-size: 1.3em;
    }

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

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

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

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

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

    .page-support__btn--link {
        margin: 0 0 20px 0;
        width: 100%;
    }
}