.page-user-stories-user-reviews-on-customer-service {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1A2E4E; /* Dark blue for primary text */
    background-color: #f8f8f8; /* Very light grey background */
}

.page-user-stories-user-reviews-on-customer-service__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-user-stories-user-reviews-on-customer-service__hero {
    background: linear-gradient(135deg, #1A2E4E 0%, #3a4e70 100%); /* Dark blue gradient */
    color: #ffffff; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-user-stories-user-reviews-on-customer-service__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23FFD700" opacity="0.1"%3E%3Ccircle cx="25" cy="25" r="12"%3E%3C/circle%3E%3Ccircle cx="75" cy="75" r="12"%3E%3C/circle%3E%3C/g%3E%3C/svg%3E'); /* Subtle gold pattern */
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 0;
}

.page-user-stories-user-reviews-on-customer-service__hero > .page-user-stories-user-reviews-on-customer-service__container {
    position: relative;
    z-index: 1;
}

.page-user-stories-user-reviews-on-customer-service__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-user-stories-user-reviews-on-customer-service__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0; /* Lighter white for subtitle */
}

.page-user-stories-user-reviews-on-customer-service__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.page-user-stories-user-reviews-on-customer-service__section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for content sections */
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-user-stories-user-reviews-on-customer-service__section:nth-of-type(even) {
    background-color: #f0f4f7; /* Slightly different background for alternating sections */
}

.page-user-stories-user-reviews-on-customer-service__heading {
    font-size: 2.5em;
    color: #1A2E4E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-user-stories-user-reviews-on-customer-service__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-user-stories-user-reviews-on-customer-service__sub-heading {
    font-size: 1.8em;
    color: #1A2E4E;
    margin-bottom: 15px;
    text-align: left;
}

.page-user-stories-user-reviews-on-customer-service__text {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

/* Key Aspects Grid */
.page-user-stories-user-reviews-on-customer-service__aspects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-user-stories-user-reviews-on-customer-service__aspect-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-user-stories-user-reviews-on-customer-service__aspect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-user-stories-user-reviews-on-customer-service__image-small {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.page-user-stories-user-reviews-on-customer-service__testimonials .page-user-stories-user-reviews-on-customer-service__heading {
    color: #1A2E4E;
}

.page-user-stories-user-reviews-on-customer-service__review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-user-stories-user-reviews-on-customer-service__review-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.page-user-stories-user-reviews-on-customer-service__review-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-user-stories-user-reviews-on-customer-service__review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-user-stories-user-reviews-on-customer-service__review-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FFD700;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-user-stories-user-reviews-on-customer-service__review-text {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-user-stories-user-reviews-on-customer-service__reviewer {
    font-weight: bold;
    color: #1A2E4E;
    font-size: 1.1em;
}

/* Contact Methods */
.page-user-stories-user-reviews-on-customer-service__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-user-stories-user-reviews-on-customer-service__contact-list li {
    background-color: #f0f4f7;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-user-stories-user-reviews-on-customer-service__contact-list li strong {
    color: #1A2E4E;
    font-size: 1.1em;
}

.page-user-stories-user-reviews-on-customer-service__link {
    color: #1A2E4E;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-user-stories-user-reviews-on-customer-service__link:hover {
    color: #FFD700;
}

.page-user-stories-user-reviews-on-customer-service__image-large {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

/* CTA Section */
.page-user-stories-user-reviews-on-customer-service__cta-section {
    background: linear-gradient(to right, #1A2E4E, #3a4e70); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-user-stories-user-reviews-on-customer-service__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23FFD700" opacity="0.1"%3E%3Cpath d="M0 0h50v50H0zM50 50h50v50H50z"/%3E%3C/g%3E%3C/svg%3E'); /* Subtle gold pattern */
    background-size: 60px 60px;
    opacity: 0.1;
    z-index: 0;
}

.page-user-stories-user-reviews-on-customer-service__cta-section > .page-user-stories-user-reviews-on-customer-service__container {
    position: relative;
    z-index: 1;
}

.page-user-stories-user-reviews-on-customer-service__heading--cta {
    color: #FFD700; /* Gold for CTA heading */
    margin-bottom: 25px;
}

.page-user-stories-user-reviews-on-customer-service__heading--cta::after {
    background-color: #ffffff; /* White line for CTA heading */
}

.page-user-stories-user-reviews-on-customer-service__text--cta {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-user-stories-user-reviews-on-customer-service__button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 15px 20px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-user-stories-user-reviews-on-customer-service__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E4E; /* Dark blue text */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-user-stories-user-reviews-on-customer-service__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-user-stories-user-reviews-on-customer-service__button--secondary {
    background-color: transparent;
    color: #ffffff; /* White text */
    border: 2px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-user-stories-user-reviews-on-customer-service__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-user-stories-user-reviews-on-customer-service__cta-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-user-stories-user-reviews-on-customer-service__title {
        font-size: 2.5em;
    }

    .page-user-stories-user-reviews-on-customer-service__heading {
        font-size: 2em;
    }

    .page-user-stories-user-reviews-on-customer-service__sub-heading {
        font-size: 1.5em;
    }

    .page-user-stories-user-reviews-on-customer-service__aspects-grid,
    .page-user-stories-user-reviews-on-customer-service__review-grid {
        grid-template-columns: 1fr;
    }

    .page-user-stories-user-reviews-on-customer-service__button {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-user-stories-user-reviews-on-customer-service__hero {
        padding: 60px 0;
    }

    .page-user-stories-user-reviews-on-customer-service__title {
        font-size: 2em;
    }

    .page-user-stories-user-reviews-on-customer-service__subtitle {
        font-size: 1em;
    }

    .page-user-stories-user-reviews-on-customer-service__heading {
        font-size: 1.8em;
    }

    .page-user-stories-user-reviews-on-customer-service__section {
        padding: 40px 0;
    }

    .page-user-stories-user-reviews-on-customer-service__review-avatar {
        width: 70px;
        height: 70px;
    }
}