/* Reset and base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header navigation */
header.navbar {
  background: #2a2e38;
  color: white;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav a {
  color: white;
  margin-left: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ffc107;
}

/* Hero section */
.hero {
  background: #e9ecef;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero input[type="text"] {
  padding: 10px;
  width: 80%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Main sections */
.section {
  padding: 60px 20px;
  background: white;
  border-bottom: 1px solid #eee;
}

.section:nth-child(even) {
  background: #f1f1f1;
}

h3 {
  color: #004085;
  margin-bottom: 20px;
}

p, ul {
  line-height: 1.6;
}

/* Contact form */
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #004085;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
}

form button:hover {
  background-color: #002752;
}

/* Footer */
footer {
  background: #2a2e38;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9rem;
}
