
/* General Styling */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #fffaf5 url('https://www.transparenttextures.com/patterns/paw-print.png');
  line-height: 1.6;
  color: #333; /* Text color */
}

header {
  background: #8B0000; /* Dark red header */
  color: white;
  padding: 20px;
  text-align: center;
  border-bottom: 5px dashed #fff;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

nav a:hover {
  background: white;
  color: #8B0000;
}

.hero {
  background: #ffe5d9; /* Light pink */
  padding: 100px 20px;
  text-align: center;
  color: #8B0000; /* Dark red text */
}

.hero h1 {
  font-size: 3em;
  font-family: 'Playfair Display', serif;
}

.hero img {
  max-width: 180px;
  margin-bottom: 20px;
}

.section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  color: #8B0000;
  font-size: 2.2em;
}

/* Team Section */
.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  max-width: 300px;
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  color: #8B0000;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 1rem;
  color: #555;
}

/* Contact Info Styling */
.contact-info {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.2rem;
}

.contact-info a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info i {
  margin-right: 10px;
  color: #8B0000;
  font-size: 1.3rem;
}

/* Testimonial Section Styling */
.testimonials {
  background: #fcefee; /* Light pink background */
  border-top: 3px dotted #8B0000; /* Dotted border for separation */
  padding: 50px 20px;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  color: #8B0000;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.testimonial {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
  position: relative;
}

.testimonial blockquote {
  font-size: 1.2rem;
  color: #333;
  font-style: italic;
  margin: 0;
  padding: 0;
}

.testimonial blockquote p {
  margin: 20px 0;
}

.testimonial footer {
  font-weight: bold;
  color: #8B0000;
  font-size: 1.1rem;
}

.testimonial:before {
  content: "“";
  font-size: 3rem;
  color: #8B0000;
  position: absolute;
  top: -10px;
  left: 20px;
}

.testimonial:after {
  content: "”";
  font-size: 3rem;
  color: #8B0000;
  position: absolute;
  bottom: -10px;
  right: 20px;
}

/* Responsive Testimonial Cards */
@media only screen and (max-width: 768px) {
  .testimonials h2 {
    font-size: 2rem;
  }

  .testimonial {
    padding: 20px;
  }

  .testimonial blockquote {
    font-size: 1rem;
  }

  .testimonial footer {
    font-size: 1rem;
  }
}
