/* 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: 0 20px;
}

/* Hero Section */
.page-support__hero {
    position: relative;
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.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__hero .page-support__container {
    position: relative;
    z-index: 1;
}

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

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

.page-support__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-support__btn--primary {
    background-color: #ffc107; /* Gold for primary CTA */
    color: #333; /* Dark text for gold background */
    border: 2px solid #ffc107;
}

.page-support__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #fff;
}

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

.page-support__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.page-support__btn--outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 10px 20px;
    font-size: 1em;
}

.page-support__btn--outline:hover {
    background-color: #007bff;
    color: #fff;
}

.page-support__btn--lg {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-support__btn--lg:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #fff;
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* FAQ Section */
.page-support__faq {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

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

.page-support__faq .page-support__container {
    position: relative;
    z-index: 1;
}

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

.page-support__faq-item {
    background-color: #f1f7ff; /* Light blue background for FAQ item */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

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

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

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

.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: #555;
    background-color: #f1f7ff;
}

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

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

.page-support__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-support__link:hover {
    text-decoration: underline;
}

/* Contact Section */
.page-support__contact {
    padding: 80px 0;
    background-color: #f0f8ff; /* Lighter blue tint */
    text-align: center;
}

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

.page-support__contact-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    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;
    filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.2));
}

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

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

/* Resources Section */
.page-support__resources {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-support__resource-item {
    background-color: #f1f7ff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__resource-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(255, 193, 7, 0.2));
}

.page-support__resource-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-support__resource-description {
    color: #666;
    margin-bottom: 20px;
}

/* Call to Action Section */
.page-support__cta {
    padding: 100px 0;
    background: linear-gradient(90deg, #007bff, #ffc107); /* Gradient from blue to gold */
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__cta .page-support__container {
    position: relative;
    z-index: 1;
}

.page-support__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__hero {
        padding: 80px 0;
    }

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

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

    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

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

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

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

    .page-support__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

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

    .page-support__hero-actions {
        gap: 10px;
    }

    .page-support__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-support__contact-icon,
    .page-support__resource-icon {
        width: 50px;
        height: 50px;
    }

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