* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #0b3c5d, #06283d);
  padding: 30px 20px;
}

.header-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 80px;
}

.header-text h1 {
  color: #fff;
}

.header-text p {
  color: #dbe9f4;
}

/* Navigation */
nav {
  background: #06283d;
  text-align: center;
  padding: 12px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

/* Sections */
.hero {
  padding: 50px;
  background: #fff;
  text-align: center;
}

.content {
  background: #fff;
  margin: 40px auto;
  padding: 40px;
  max-width: 1000px;
  border-radius: 8px;
}

/* Lists */
.services {
  list-style: none;
}

.services li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* Images */
.image-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-row img {
  width: 30%;
  border-radius: 8px;
}

/* Forms */
form input, form select, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

form button {
  background: #0b3c5d;
  color: #fff;
  padding: 12px;
  border: none;
}

/* Footer */
footer {
  background: #06283d;
  color: #fff;
  text-align: center;
  padding: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .image-row img {
    width: 100%;
  }
}
