/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Typography scaling */
body {
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Responsive padding for sections */
section {
  padding: 40px 20px;
}

/* Responsive nav collapse fallback */
@media (max-width: 768px) {
  h1, h2 {
    font-size: 1.5rem;
  }

  .navbar-brand small {
    display: block;
    font-size: 0.75rem;
  }

  .carousel-item img {
    height: auto !important;
  }

  footer p {
    font-size: 0.9rem;
  }
}

