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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background-color: #d32f2f;
  color: #fff;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

header h1 {
  font-size: 1.8rem;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero {
  text-align: center;
  background-color: #fff;
  color: #d32f2f;
  padding: 3rem 1rem;
}

.hero p {
  font-size: 1.2rem;
}

/* Services Section */
.services {
  background-color: #f9f9f9;
  padding: 2rem 1rem;
}

.services h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.services ul {
  list-style: none;
  text-align: center;
}

.services li {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
  background-color: #fff;
  padding: 2rem 1rem;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.gallery .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

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

/* Testimonials Section */
.testimonials {
  background-color: #f9f9f9;
  padding: 2rem 1rem;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.testimonials blockquote {
  margin: 1rem auto;
  padding: 1rem;
  max-width: 600px;
  background-color: #fff;
  border-left: 4px solid #d32f2f;
  color: #333;
  font-style: italic;
}

/* Contact Section */
.contact {
  background-color: #d32f2f;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  .gallery .images {
    grid-template-columns: 1fr;
  }
}
