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

.page-resources-ww88-customer-support__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-resources-ww88-customer-support__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-resources-ww88-customer-support__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-resources-ww88-customer-support__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-ww88-customer-support__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-resources-ww88-customer-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-resources-ww88-customer-support__section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-resources-ww88-customer-support__section:nth-of-type(even) {
    background-color: #e6e6e6; /* Light grey for alternating sections */
}

.page-resources-ww88-customer-support__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-ww88-customer-support__section h2 {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-ww88-customer-support__section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

.page-resources-ww88-customer-support__section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

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

.page-resources-ww88-customer-support__channel-item,
.page-resources-ww88-customer-support__commitment-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-ww88-customer-support__channel-item:hover,
.page-resources-ww88-customer-support__commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-ww88-customer-support__channel-icon,
.page-resources-ww88-customer-support__commitment-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-resources-ww88-customer-support__channel-item h3,
.page-resources-ww88-customer-support__commitment-item h3 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-resources-ww88-customer-support__channel-item p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-resources-ww88-customer-support__contact-info {
    font-weight: bold;
    color: #003366;
    margin-top: 10px;
}

.page-resources-ww88-customer-support__social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-ww88-customer-support__social-links li {
    margin-bottom: 10px;
}

.page-resources-ww88-customer-support__social-links a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-ww88-customer-support__social-links a:hover {
    color: #FFCC00;
}

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

.page-resources-ww88-customer-support__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

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

.page-resources-ww88-customer-support__btn--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-resources-ww88-customer-support__btn--secondary:hover {
    background-color: #004d99;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.page-resources-ww88-customer-support__btn--inline {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

/* FAQ Accordion */
.page-resources-ww88-customer-support__accordion {
    margin-top: 40px;
    text-align: left;
}

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

.page-resources-ww88-customer-support__accordion-header {
    width: 100%;
    background-color: #003366;
    color: #fff;
    padding: 18px 25px;
    border: none;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-ww88-customer-support__accordion-header:hover {
    background-color: #004d99;
}

.page-resources-ww88-customer-support__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

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

.page-resources-ww88-customer-support__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fefefe;
    color: #333;
}

.page-resources-ww88-customer-support__accordion-content.active {
    max-height: 500px; /* Adjust as needed for content length */
    padding: 25px;
}

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

.page-resources-ww88-customer-support__faq-note {
    margin-top: 30px;
    font-style: italic;
    color: #666;
}

.page-resources-ww88-customer-support__faq-note a {
    color: #003366;
    font-weight: bold;
    text-decoration: none;
}

.page-resources-ww88-customer-support__faq-note a:hover {
    color: #FFCC00;
    text-decoration: underline;
}

.page-resources-ww88-customer-support__commitment-item p {
    font-size: 1em;
    color: #666;
}

.page-resources-ww88-customer-support__cta-bottom {
    margin-top: 60px;
    padding: 40px;
    background-color: #003366;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-ww88-customer-support__cta-bottom p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #fff;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-resources-ww88-customer-support__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-resources-ww88-customer-support__hero-content {
        flex: 1;
    }

    .page-resources-ww88-customer-support__hero-image-wrapper {
        flex: 1;
        margin-top: 0;
        margin-left: 40px;
    }

    .page-resources-ww88-customer-support__hero h1 {
        font-size: 4.5em;
    }

    .page-resources-ww88-customer-support__hero p {
        font-size: 1.3em;
    }

    .page-resources-ww88-customer-support__section {
        padding: 80px 40px;
    }

    .page-resources-ww88-customer-support__section h2 {
        font-size: 3em;
    }

    .page-resources-ww88-customer-support__channel-grid,
    .page-resources-ww88-customer-support__commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .page-resources-ww88-customer-support__channel-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .page-resources-ww88-customer-support__commitment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .page-resources-ww88-customer-support__hero h1 {
        font-size: 2.5em;
    }
    .page-resources-ww88-customer-support__hero p {
        font-size: 1em;
    }
    .page-resources-ww88-customer-support__section h2 {
        font-size: 2em;
    }
    .page-resources-ww88-customer-support__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-resources-ww88-customer-support__accordion-content {
        padding: 15px 20px;
    }
    .page-resources-ww88-customer-support__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-resources-ww88-customer-support__btn--inline {
        width: auto;
        max-width: none;
        margin: 15px 0 0 0;
    }
}