/* ===== Global Styles ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
}

/* ===== Container ===== */
.container {
  max-width: 1000px;   /* prevents stretching on huge monitors */
  width: 90%;          /* shrinks on smaller screens */
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

/* ===== Images ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

/* ===== Headings & Paragraphs ===== */
h1 { font-size: 2rem; margin-top: 1rem; margin-bottom: 0.5rem; color: #6b2a18; }
h2 { font-size: 1.5rem; margin-top: 1rem; margin-bottom: 0.5rem; color: #6b2a18; }
p  { font-size: 1rem; margin-bottom: 1rem; }

/* ===== Navigation ===== */
.navbar {
  background-color: #c0e2fb;
  padding: 10px 20px;
  position: relative;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #0000FF;
  font-size: 1.1rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
  transition: 0.3s;
}

/* ===== Testimonials ===== */
.testimonials { margin-top: 20px; }
.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.testimonial img {
  max-width: 200px;
  height: auto;
}

.testimonial div { flex: 1; }

/* ===== Responsive Media Queries ===== */
@media (max-width: 768px) {
  /* Flex wrap for testimonials */
  .testimonial { flex-direction: column; align-items: center; text-align: left; }
  .testimonial img { margin-bottom: 10px; }

  /* Headings & text */
  h1 { font-size: 1.6rem; color: #6b2a18 }
  h2 { font-size: 1.3rem; }
  p  { font-size: 1rem; }

  /* Nav Links become hamburger menu */
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #c0e2fb;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }

  .nav-links.active { display: flex; }

  .hamburger { display: flex; }
}
