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

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

header {
  background-color: #0c2238;
  padding: 20px 0;
}

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

header .logo {
  height: 60px;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background-color: #0c2238;
  color: white;
  padding: 60px 0;
}

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

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 48px;
}

.hero-text p {
  font-size: 18px;
  margin: 20px 0;
}

.hero-text button {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.services {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.service-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.service-box {
  width: 220px;
  padding: 20px;
  text-align: center;
}

.service-box img {
  height: 80px;
  margin-bottom: 15px;
}

.service-box h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #0c2238;
}

.service-box p {
  font-size: 14px;
  color: #333;
}

.about {
  padding: 60px 0;
  background: #f5f5f5;
}

.about-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text, .about-box {
  width: 48%;
}

.about-text button, .about-box button {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #0c2238;
  color: #0c2238;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

footer {
  background: #0c2238;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-logo {
  height: 80px;
}

.footer-links a {
  display: block;
  color: white;
  margin: 5px 0;
  text-decoration: none;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}
