/* Body*/
body{
background-color: beige;
}
/* Hero Section */
.hero-section {
    background: url('images/hero section.jpg') center/cover no-repeat;
    min-height: 300px;
  }
  
  .hero-section h1, .hero-section p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  /* Our Values Icons */
  .our-values i {
    font-size: 2rem;
    color: #ff5722;
  }
  
  /* Testimonials Carousel */
  .testimonials blockquote {
    font-size: 1.5rem;
    font-style: italic;
  }
  .testimonials cite {
    font-size: 1rem;
    color: #f8c471;
  }
  footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-content p {
    margin: 0;
    padding: 5px 0;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-content a {
    color: #ddd;
    text-decoration: none;
}

.footer-content a:hover {
    color: #fff;
}

.footer-credits {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 10px;
}  