* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f9fc;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.header {
  background: #0b2c4d;
  color: #fff;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header nav a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
}

.logo {
  height: 50px;
  margin-right: 16px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0b2c4d, #ff8c2b);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-box {
  margin-top: 20px;
  font-size: 1.1rem;
}

/* Services */
.services {
  padding: 50px 0;
  background: #fff;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
}

.service-list {
  list-style: none;
  max-width: 600px;
  margin: auto;
}

.service-list li {
  background: #f1f4f8;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 5px solid #ff8c2b;
}

/* Footer */
.footer {
  background: #0b2c4d;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-content {
  flex: 1;
  text-align: center;
}

.footer p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer-icon {
  height: 120px;
  margin: 10px 8px 0 8px;
  vertical-align: middle;
}

.footer-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.footer-icon.left {
  order: 1;
  height: 250px;
}

.footer-icon.right {
  order: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }
}
