body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.testimonials {
    padding: 50px 0;
    background-color: #181617;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; /* Add some padding for smaller screens */
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: aliceblue;
}

.google-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Ensure items wrap on smaller screens */
}

.google-logo {
    width: 100px;
    height: auto;
    margin-right: 20px;
}

.review-rating {
    width: 200px;
    height: auto;
    max-width: 100%; /* Ensure the image scales down on smaller screens */
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
}

.testimonial {
    background-color: #161a1d;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.452);
    border-radius: 10px;
    margin: 0 10px;
    padding: 20px;
    max-width: 300px;
    flex: 0 0 auto;
    text-align: center;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.author {
    font-weight: bold;
    margin-bottom: 10px;
    color: aliceblue;
}

.rating {
    font-size: 24px;
    color: #ffd700;
    margin-top: 10px;
}

.testimonial p {
    color: aliceblue;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }
    
    .testimonial {
        max-width: 80%; /* Make testimonials wider on smaller screens */
        margin: 0 auto 20px auto; /* Center the testimonials */
    }
    
    .google-logo {
        width: 80px;
        margin-right: 10px;
    }
    
    .review-rating {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5em;
    }

    .testimonial {
        max-width: 100%; /* Make testimonials full-width on the smallest screens */
    }
}



.review-link-container {
    text-align: center;
    margin-top: 30px;
}

.review-link {
    display: inline-flex;
    align-items: center;
    background-color: #4285F4; /* Google Blue */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.review-link:hover {
    background-color: #357ae8; /* Darker Blue on hover */
    transform: scale(1.05);
}

.review-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
}
