* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    padding: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.Hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product--con h2 {
    font-size: 2.5rem;
    color: #6c3a76; 
    font-weight: bold;
    margin-bottom: 30px;
}
.testimonial-slider {
    margin-top: 20px;
    position: relative;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial--img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #5ad0c3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: bold;
    color: #6c3a76; 
}
.slick-dots {
    bottom: -30px;
}
.slick-dots li button:before {
    font-size: 12px;
    color: #6c3a76; 
}

.slick-dots li.slick-active button:before {
    color: #5ad0c3; 
}

@media only screen and (max-width: 425px) {
    body {
        padding: 25px !important;
    }
    .testimonial-slider {
        display: block !important;
        align-items: center;
    }

    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 10px;
        border-bottom: 1px solid #ddd;
        margin-bottom: 15px;
    }

    .testimonial--img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 10px;
    }

    .testimonial-author {
        font-weight: bold;
        font-size: 13px;
        margin-top: 10px;
    }

    .product--con h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .container {
        padding: 0 15px;
    }
}

