/* assets/style.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f8f9fb;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

header {
  background: #004470;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(to right, #005a9c, #0076c9);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero .button {
  background: white;
  color: #005a9c;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
}

section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.card {
  background: white;
  padding: 1.25rem;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

form input[type="text"] {
  width: 60%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 0.5rem;
}

form button {
  background: #004470;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #eee;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #666;
}

.button {
  background: #0076c9;
  color: white;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease-in-out;
}

.button:hover {
  background: #005fa3;
}
.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}
.breadcrumb li a {
  color: #0076c9;
  text-decoration: none;
}
.breadcrumb li span {
  color: #aaa;
}
