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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 30px 0;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Contact Information */
.contact-info {
    background: #e8f4f8;
    border-left: 4px solid #1a73e8;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.contact-info h2 {
    color: #1557b0;
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-info ul {
    list-style: none;
    font-size: 16px;
}

.contact-info li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

/* Testimonials */
.testimonials h2 {
    color: #1557b0;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.testimonial {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial:before {
    content: "“";
    position: absolute;
    font-size: 80px;
    color: #1a73e840;
    top: -20px;
    left: 10px;
    font-family: Times New Roman;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial p {
        padding-left: 15px;
    }
    
    .contact-info {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-info li {
        font-size: 14px;
    }
    
    .testimonial p {
        font-size: 14px;
    }
}
.image-grid {
  width: 900px;
  margin: 0 auto;
}

.grid-row {
  display: grid;
  grid-template-columns: 384px 344px 172px;
  height: var(--row-height);
  margin-bottom: 0;
}

.grid-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}