/* style/support.css */
.page-support {
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #000000;
}

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

.page-support__hero-section {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #cccccc;
    position: relative;
    z-index: 1;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-support__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 1.1em;
}

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

.page-support__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-support__btn--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
}

.page-support__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.page-support__faq-section, .page-support__contact-section, .page-support__resources-section, .page-support__cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-support__faq-section {
    background-color: #1a1a1a;
}

.page-support__faq-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-support__faq-item {
    background-color: #000000;
    border: 1px solid #333333;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-support__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #cccccc;
    line-height: 1.6;
}

.page-support__faq-answer.active {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-support__faq-answer p {
    margin-bottom: 15px;
}

.page-support__faq-answer .page-support__btn {
    margin-top: 10px;
}

.page-support__contact-section {
    background-color: #000000;
}

.page-support__contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

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

.page-support__contact-card {
    background-color: #0d0d0d;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
}

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

.page-support__contact-card p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.page-support__resources-section {
    background-color: #1a1a1a;
}

.page-support__resources-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-support__resource-card {
    background-color: #0d0d0d;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 25px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__resource-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

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

.page-support__resource-card p {
    color: #cccccc;
    line-height: 1.5;
    flex-grow: 1;
}

.page-support__read-more {
    display: block;
    margin-top: 20px;
    color: #FFD700;
    font-weight: bold;
    text-align: right;
}

.page-support__read-more:hover {
    text-decoration: underline;
}

.page-support__cta-section {
    background: linear-gradient(90deg, #000000, #333333);
    text-align: center;
    padding: 80px 0;
}

.page-support__cta-content {
    max-width: 900px;
}

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

.page-support__cta-description {
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__section-description {
        font-size: 0.9em;
    }
    .page-support__contact-methods, .page-support__resource-grid {
        grid-template-columns: 1fr;
    }
    .page-support__cta-title {
        font-size: 2.2em;
    }
    .page-support__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-support__hero-section, .page-support__faq-section, .page-support__contact-section, .page-support__resources-section, .page-support__cta-section {
        padding: 50px 0;
    }
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 0.9em;
    }
    .page-support__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer {
        padding: 15px 20px;
    }
    .page-support__contact-title {
        font-size: 1.5em;
    }
    .page-support__resource-title {
        font-size: 1.3em;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
}