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

.page-resources-customer-support-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-customer-support-faq__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #20418A 100%); /* Darker blue to slightly lighter blue */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-customer-support-faq__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-customer-support-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E3B23C; /* Golden color for title for strong contrast */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-customer-support-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #E0E0E0; /* Lighter grey for good contrast on dark blue */
}

.page-resources-customer-support-faq__hero-description a {
    color: #E3B23C; /* Golden for links */
    text-decoration: underline;
}

.page-resources-customer-support-faq__hero-description a:hover {
    color: #FFD700; /* Brighter golden on hover */
}

.page-resources-customer-support-faq__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-resources-customer-support-faq__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-resources-customer-support-faq__button--primary {
    background-color: #E3B23C; /* Golden */
    color: #0A2463; /* Dark blue text */
    border: 2px solid #E3B23C;
}

.page-resources-customer-support-faq__button--primary:hover {
    background-color: #FFD700; /* Brighter golden */
    transform: translateY(-2px);
}

.page-resources-customer-support-faq__button--secondary {
    background-color: transparent;
    color: #E3B23C; /* Golden text */
    border: 2px solid #E3B23C;
}

.page-resources-customer-support-faq__button--secondary:hover {
    background-color: rgba(227, 178, 60, 0.1);
    transform: translateY(-2px);
}

.page-resources-customer-support-faq__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue */
    text-align: center;
    margin-bottom: 25px;
    padding-top: 40px;
    font-weight: bold;
}

.page-resources-customer-support-faq__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-resources-customer-support-faq__section-intro a {
    color: #0A2463;
    text-decoration: underline;
}

.page-resources-customer-support-faq__section-intro a:hover {
    color: #E3B23C;
}

.page-resources-customer-support-faq__contact-methods,
.page-resources-customer-support-faq__faq-section,
.page-resources-customer-support-faq__why-choose-us,
.page-resources-customer-support-faq__cta-section {
    padding: 60px 0;
}

.page-resources-customer-support-faq__contact-methods {
    background-color: #F8F8F8;
}

.page-resources-customer-support-faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-customer-support-faq__contact-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-customer-support-faq__contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-resources-customer-support-faq__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-resources-customer-support-faq__card-title {
    font-size: 1.6em;
    color: #0A2463; /* Dark blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-customer-support-faq__card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

.page-resources-customer-support-faq__card-description a {
    color: #0A2463;
    text-decoration: underline;
}

.page-resources-customer-support-faq__card-description a:hover {
    color: #E3B23C;
}

.page-resources-customer-support-faq__button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 6px;
}

.page-resources-customer-support-faq__faq-section {
    background-color: #ffffff;
}

.page-resources-customer-support-faq__accordion {
    margin-top: 40px;
}

.page-resources-customer-support-faq__accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-customer-support-faq__accordion-header {
    background-color: #0A2463;
    color: #ffffff; /* White text on dark blue background for contrast */
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-customer-support-faq__accordion-header:hover {
    background-color: #1A3C7C; /* Slightly lighter blue on hover */
}

.page-resources-customer-support-faq__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-customer-support-faq__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-customer-support-faq__accordion-content {
    padding: 0 30px;
    background-color: #fcfcfc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-customer-support-faq__accordion-content.active {
    max-height: 500px; /* Adjust based on expected content length */
    padding: 20px 30px;
}

.page-resources-customer-support-faq__accordion-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-resources-customer-support-faq__accordion-content p:last-child {
    margin-bottom: 0;
}

.page-resources-customer-support-faq__accordion-content a {
    color: #0A2463;
    text-decoration: underline;
}

.page-resources-customer-support-faq__accordion-content a:hover {
    color: #E3B23C;
}

.page-resources-customer-support-faq__accordion-content .page-resources-customer-support-faq__button--small {
    margin-top: 15px;
}

.page-resources-customer-support-faq__why-choose-us {
    background-color: #F0F4F8;
}

.page-resources-customer-support-faq__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-customer-support-faq__feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-resources-customer-support-faq__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #E3B23C; /* Golden color for icons */
    filter: drop-shadow(0 4px 8px rgba(227, 178, 60, 0.2));
}

.page-resources-customer-support-faq__feature-title {
    font-size: 1.5em;
    color: #0A2463; /* Dark blue */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-customer-support-faq__feature-description {
    color: #666;
    font-size: 0.95em;
}

.page-resources-customer-support-faq__feature-description a {
    color: #0A2463;
    text-decoration: underline;
}

.page-resources-customer-support-faq__feature-description a:hover {
    color: #E3B23C;
}

.page-resources-customer-support-faq__cta-section {
    background: linear-gradient(45deg, #0A2463, #E3B23C);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-resources-customer-support-faq__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff; /* White text for strong contrast on gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-customer-support-faq__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F0F0F0; /* Slightly off-white for readability */
}

.page-resources-customer-support-faq__cta-description a {
    color: #FFD700; /* Bright golden for links */
    text-decoration: underline;
}

.page-resources-customer-support-faq__cta-description a:hover {
    color: #ffffff;
}

.page-resources-customer-support-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.page-resources-customer-support-faq__button--large {
    padding: 16px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-customer-support-faq__hero-title {
        font-size: 2.8em;
    }
    .page-resources-customer-support-faq__section-title {
        font-size: 2em;
    }
    .page-resources-customer-support-faq__cta-title {
        font-size: 2.4em;
    }
    .page-resources-customer-support-faq__grid,
    .page-resources-customer-support-faq__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-customer-support-faq__hero-section,
    .page-resources-customer-support-faq__contact-methods,
    .page-resources-customer-support-faq__faq-section,
    .page-resources-customer-support-faq__why-choose-us,
    .page-resources-customer-support-faq__cta-section {
        padding: 50px 0;
    }
    .page-resources-customer-support-faq__hero-title {
        font-size: 2.2em;
    }
    .page-resources-customer-support-faq__hero-description {
        font-size: 1em;
    }
    .page-resources-customer-support-faq__hero-cta,
    .page-resources-customer-support-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-customer-support-faq__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-resources-customer-support-faq__section-title {
        font-size: 1.8em;
    }
    .page-resources-customer-support-faq__section-intro {
        font-size: 0.95em;
    }
    .page-resources-customer-support-faq__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-customer-support-faq__accordion-content {
        padding: 15px 20px;
    }
    .page-resources-customer-support-faq__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-resources-customer-support-faq__hero-title {
        font-size: 1.8em;
    }
    .page-resources-customer-support-faq__section-title {
        font-size: 1.5em;
    }
    .page-resources-customer-support-faq__cta-title {
        font-size: 1.6em;
    }
    .page-resources-customer-support-faq__button {
        width: 90%;
    }
}