* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures that content wraps on smaller screens */
}

.testimonial-image {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.testimonial-text {
    max-width: 600px;
    text-align: left;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 700;
    color: #333;
    font-size: 18px;
    margin-bottom: 0;
}

.testimonial-company {
    color: red;
    margin-bottom: 0;
}

.testimonial-rating {
    font-size: 1.5rem;
    color: #f39c12;
}

/* Responsive Design */

/* Tablet View */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column; /* Stacks the image and text vertically */
        text-align: center; /* Centers the content on small screens */
    }

    .testimonial-text {
        max-width: 100%; /* Makes the text take the full width */
        text-align: center;
        padding: 20px;
    }

    .testimonial-image {
        width: 200px;
        height: 200px;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .testimonial-section {
        padding: 40px 15px; /* Reduces padding for smaller devices */
    }

    .testimonial-image {
        width: 150px;
        height: 150px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-rating {
        font-size: 1.3rem;
    }
}


/* Call to Action Section */
.cta-section {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    color: #555;
}

.cta-button {
    background-color: #ff9800;
    color: #fff;
    padding: 12px 20px;
    border: none;
    text-decoration: none;
    font-size: 1rem;
    /* border-radius: 5px; */
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f57c00;
}