body{
    background-image: url(assets/images/body.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container{
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
} 

header{
    height: 118px;
    background-color: rgba(255, 255, 255, 0.288);
    text-align: center;
}

nav{
    background-color: rgba(0, 0, 0, 0.315);
    text-align: center;
}

.nav{
    padding-top: 16px;
    padding-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}

nav a{
    text-decoration: none;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
}

.section-title {
    text-align: center;
    color: #2B5A4A;
    margin-bottom: 40px;
    font-size: 2em;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: "“";
    font-size: 4em;
    color: #F4B915;
    position: absolute;
    top: -20px;
    left: 10px;
    opacity: 0.5;
}

.customer-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #F4B915;
}

.customer-details {
    line-height: 1.4;
}

.customer-name {
    font-weight: bold;
    color: #2B5A4A;
}

.customer-location {
    color: #666;
    font-size: 0.9em;
}

.rating {
    color: #F4B915;
    margin: 10px 0;
}

/* Footer */
.footer {
    background: #2B5A4A;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

 /* Footer */
 .footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.section-title{
    color: white;
}