.testimonials-wrapper {
    background-color: #bcdafa;
}

.are-you {
    display: flex;
    justify-content: space-between; /* Equal spacing between cards */
    align-items: center;
    margin: 20px auto;
    gap: 20px; /* Space between cards */
    padding-left: 160px;
    padding-right: 160px;
}

.testimonial-card {
    width: 300px;
    height: 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #f5c518; /* Gold for stars */
    font-size: 20px;
    letter-spacing: 2px;
}

.testimonial-card h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-family: Outfit;
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.company-name {
    font-size: 14px;
    font-weight: bold;
    color: #0073e6; /* Highlight company name in blue */
    font-family: Outfit;
}


.subtitle {
    color: #000;
    font-family: Outfit;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

h3{
    color: #000;

    /* Heading-1 */
    font-family: Outfit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    padding: 10px;
}

.accordion-content {
    display: none;
}

.accordion-container {
    text-align: center; /* Centers the content inside the container */
    width: 100%; /* Ensures the container spans the full width */
    padding-bottom: 15px;
}

.accordion-toggle {
    background-color: transparent;
    border: none;
    color: #007BFF;
    cursor: pointer;
    font-size: 1em;
    text-decoration: underline;
    padding: 0;
    display: none;
    font-family: Outfit;
}


/* Media query for smaller screens */
@media (max-width: 1200px) {
    .are-you {
        padding-left: 20px;
        padding-right: 20px;
    }
    .subtitle {
        font-size:20px;
    }
    h3{
        font-size: 20px;
    }
}

@media (min-width: 801px) {
    .accordion-toggle {
        display: none;
    }
    .accordion-content {
        display: block;
    }
}


@media (max-width: 800px) {
    .accordion-toggle {
        display: inline;
    }
    .accordion-content {
        display: none;
    }
    .are-you{
        flex-direction: column;
        align-items: center;
    } 
}