/* style/index-user-testimonials.css */
.page-index-user-testimonials {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
}

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

.page-index-user-testimonials__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-index-user-testimonials__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Golden yellow for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-user-testimonials__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: #E0E0E0;
}

.page-index-user-testimonials__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-index-user-testimonials__btn--primary {
    background-color: #FFD700; /* Golden yellow */
    color: #0056b3; /* Darker blue for contrast */
    border: 2px solid #FFD700;
}

.page-index-user-testimonials__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-user-testimonials__btn--secondary {
    background-color: #007BFF;
    color: #FFFFFF;
    border: 2px solid #007BFF;
    margin-top: 15px;
}

.page-index-user-testimonials__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-user-testimonials__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-index-user-testimonials__btn--center {
    display: block;
    margin: 30px auto 0 auto;
}

.page-index-user-testimonials__section {
    padding: 60px 0;
}

.page-index-user-testimonials__section--alt-bg {
    background-color: #f8f9fa;
}

.page-index-user-testimonials__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-user-testimonials__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444444;
}

.page-index-user-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-user-testimonials__testimonial-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-user-testimonials__testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-user-testimonials__card-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-user-testimonials__card-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-user-testimonials__card-image {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-user-testimonials__testimonial-story {
    background-color: #FFFFFF;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-user-testimonials__story-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-user-testimonials__list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #444444;
}

.page-index-user-testimonials__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-index-user-testimonials__list strong {
    color: #007BFF;
}

.page-index-user-testimonials__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-index-user-testimonials__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-user-testimonials__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-index-user-testimonials__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none; /* Hidden by default */
}

.page-index-user-testimonials__faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-user-testimonials__hero-title {
        font-size: 2.5em;
    }

    .page-index-user-testimonials__hero-subtitle {
        font-size: 1.2em;
    }

    .page-index-user-testimonials__section-title {
        font-size: 2em;
    }

    .page-index-user-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .page-index-user-testimonials__testimonial-card {
        padding: 20px;
    }

    .page-index-user-testimonials__card-title {
        font-size: 1.5em;
    }

    .page-index-user-testimonials__testimonial-story {
        padding: 20px;
    }
}

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

    .page-index-user-testimonials__hero-subtitle {
        font-size: 1em;
    }

    .page-index-user-testimonials__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-user-testimonials__section-title {
        font-size: 1.8em;
    }

    .page-index-user-testimonials__paragraph, .page-index-user-testimonials__list li, .page-index-user-testimonials__faq-answer {
        font-size: 0.95em;
    }
}