/* 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, #0A2463, #3a5c9b);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-support__hero-image {
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.1;
    width: 300px;
    height: auto;
    z-index: 0;
}

@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-image {
        display: none;
    }
}

.page-support__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 50px;
    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: #FFD700;
    border-radius: 2px;
}

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

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

.page-support__faq-item {
    background-color: #f0f4f8;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    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.12);
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    margin-left: 10px;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

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

.page-support__contact-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-support__contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

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

.page-support__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.page-support__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-support__contact-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

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

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

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

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

.page-support__guide-item h3 {
    padding: 20px 20px 0;
    font-size: 1.4em;
    color: #0A2463;
}

.page-support__guide-item h3 a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-item h3 a:hover {
    color: #FFD700;
}

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

.page-support__link {
    display: inline-flex;
    align-items: center;
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
    padding: 0 20px 20px;
    transition: color 0.3s ease;
}

.page-support__link:hover {
    color: #FFD700;
}

.page-support__arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.page-support__link:hover .page-support__arrow {
    transform: translateX(5px);
}

.page-support__cta-banner {
    background: linear-gradient(90deg, #0A2463, #1e407f);
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
    margin-top: 60px;
}

.page-support__banner-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-support__banner-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-support__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-support__btn--primary:hover {
    background-color: #e6bf00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-support__btn--secondary {
    background-color: #0A2463;
    color: #ffffff;
    border: 2px solid #0A2463;
    margin-top: 30px;
}

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

.page-support__btn--tertiary {
    background-color: #f0f4f8;
    color: #0A2463;
    border: 1px solid #c0d1e0;
}

.page-support__btn--tertiary:hover {
    background-color: #e0eaf2;
    border-color: #a0bed0;
    transform: translateY(-2px);
}

.page-support__keyword {
    color: #FFD700;
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 60px 0;
    }
    .page-support__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-support__faq-question {
        font-size: 1.1em;
    }
    .page-support__contact-info, .page-support__guide-grid {
        grid-template-columns: 1fr;
    }
    .page-support__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-support__banner-title {
        font-size: 2em;
    }
    .page-support__banner-description {
        font-size: 1em;
    }
    .page-support__contact-card, .page-support__guide-item {
        margin-bottom: 20px;
    }
}