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

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

.page-support__hero {
    background: linear-gradient(135deg, #0A6847, #1A8D5F);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.page-support__hero-content {
    max-width: 600px;
    padding: 20px;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-support__hero-image-wrapper {
    max-width: 500px;
    flex-shrink: 0;
}

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

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

.page-support__section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-support__faq-question {
    width: 100%;
    background-color: #0A6847;
    color: #fff;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    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;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active {
    background-color: #074a33;
}

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

.page-support__faq-answer {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

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

.page-support__inline-link {
    color: #0A6847;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__inline-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-support__contact-section {
    padding: 60px 0;
    background-color: #eaf7f0;
}

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

.page-support__method-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #0A6847;
}

.page-support__method-title {
    font-size: 1.8em;
    color: #0A6847;
    margin-bottom: 10px;
}

.page-support__method-description {
    color: #666;
    margin-bottom: 25px;
}

.page-support__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0A6847; /* Deep green for contrast */
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support__cta-button:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-support__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-support__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-support__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-support__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A6847;
}

.page-support__call-to-action {
    background: linear-gradient(90deg, #0A6847, #1A8D5F);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .page-support__hero {
        padding: 60px 0;
    }
    .page-support__hero-content {
        padding: 15px;
    }
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-support__faq-answer {
        padding: 15px 20px;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-subtitle {
        font-size: 1em;
    }
    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }
    .page-support__cta-title {
        font-size: 2.2em;
    }
    .page-support__cta-description {
        font-size: 1.1em;
    }
    .page-support__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-support__hero {
        padding: 40px 0;
    }
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__hero-description {
        font-size: 0.95em;
    }
    .page-support__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-support__faq-answer {
        padding: 10px 15px;
    }
    .page-support__cta-button {
        width: 100%;
        margin-bottom: 15px;
    }
    .page-support__cta-button--large {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-support__cta-button--secondary {
        margin-top: 10px;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
}