/* Base CSS - Modern, Clean, Responsive */

/* Resets & Box Model */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Typography */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #003049;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #003049;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  margin-bottom: 1.5rem;
}

/* Links */
a {
  color: #003049;
  text-decoration: none;
}
a:hover {
  color: #C72D39;
}

/* Images & Media */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Buttons */
button, input[type="submit"] {
  padding: 0.75rem 1.5rem;
  background-color: #C72D39;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
button:hover, input[type="submit"]:hover {
  background-color: #003049;
}

/* Forms */
input[type="text"],
input[type="email"],
textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Layout Helpers */
.container {

}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Utility */
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.clear {
  clear: both;
}