
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: var(--primary);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img {
  height: 100px;
}
nav a {
  color: #0c205d;
  margin: 0 15px;
  text-decoration: none;
}
.hero {
  background: url('assets/bulk-banner-2.png') center/cover no-repeat;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 5px black;
  font-size: 2rem;
}
.hero .overlay {
  top: 43%;
  color: white;
  text-shadow: 1px 1px 5px #000;
}
header h1 {
  font-size: 2.8rem;
  margin: 0;
}
header p {
  font-size: 1.2rem;
  margin-top: 10px;
}
section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}
h2 {
  color: #0e1a35;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-align: center;
}
form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  background: #0e1a35;
  color: white;
  padding: 12px 20px;
  border: none;
  margin-top: 15px;
  border-radius: 4px;
  cursor: pointer;
}
footer {
  background: #0e1a35;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
