.testimony-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;}


.testimony {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.testimony:last-child {
    border-bottom: none;
}

.testimony-image {
    flex: 0 0 350px;
    margin-right: 20px;
}

.testimony-image img {
    width: 100%;
    height: auto;
    display: block;
}

.testimony-content {
    flex: 1;
}

.testimony-text {
    font-size: 16px;
    margin-bottom: 15px;
}

.testimony-name {
    font-weight: bold;
    font-size: 18px;
}

.testimony-location {
    font-style: italic;
    color: #ccc;
}

/* Media Queries */
@media (max-width: 768px) {
    .testimony {
        flex-direction: column;
    }
    
    .testimony-image {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .testimony-image {
        max-width: 100%;
        height: 5vh;
    }


    .testimony-image img{
      
        height: 25vh;
    }

    .testimony{
        margin-bottom: 5px;

    }
    
    .testimony-text {
        font-size: 13px;
        margin: 0 auto;
        
    }
}
