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

/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #212529;
  line-height: 1.6;
}

/* Header text */
h1, h2, h3, h4, h5 {
  font-weight: 600;
}

a {
  text-decoration: none;
}

/* Navbar */
.navbar-brand img {
  height: 40px;
}

/* Hero headers */
header {
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Card spacing */
.card-body {
  padding: 1.5rem;
}

/* Section spacing */
main {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Footer */
footer a {
  text-decoration: underline;
}

footer a:hover {
  text-decoration: none;
}

/* Buttons */
.btn {
  border-radius: 30px;
}

/* Responsive container adjustments (if needed) */
/*
.container {
  max-width: 1140px;
}
*/
