/* TESTIMOIAL PAGE */

        .testimonial-container {
            display: flex;
            align-items: center;
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            margin-bottom: 20px; /* Add some spacing between testimonials */
            background-color: rgba(255, 255, 255, 0.4); /* 40% opacity white background */
            border-radius: 10px; /* Rounded corners */
            transition: transform 0.3s, box-shadow 0.3s; /* Smooth transitions */
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Soft box shadow */
        }

        .testimonial-container:hover {
            transform: translateY(-10px); /* Move 10px upward on hover */
            box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
        }

        .customer-photo {
            flex: 1;
            max-width: 150px;
            margin-right: 20px;
        }

        .customer-photo img {
            max-width: 100%;
            border-radius: 50%;
        }

        .customer-review {
            flex: 2;
        }

        /* Additional styles for better presentation */
        .testimonial-container p {
            font-size: 16px;
            line-height: 1.5;
        }

        /* Media query for mobile devices */
        @media screen and (max-width: 768px) {
            .testimonial-container {
                flex-direction: column;
                align-items: center;
            }

            .customer-photo {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }