* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4faff;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
  header {
    background: #1c3192;
    color: white;
    padding: 20px 0;
  }

  .header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .header-content h1 {
    font-size: 28px;
    margin: 0;
  }

  nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
  }

  nav a:hover {
    text-decoration: underline;
  }

  /* Responsive Styling */
  @media (max-width: 600px) {
    .header-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    nav {
      display: grid;
      grid-template-columns: repeat(2, auto);
      gap: 10px 20px;
      margin-top: 15px;
    }

    .header-content h1 {
      margin-bottom: 10px;
    }
  }

/* Hero */
.hero {
  background: linear-gradient(to right, #dceeff, #ffffff);
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero .text {
  flex: 1;
}

.hero .text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero .text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero .image {
  flex: 1;
}

.hero .image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.btn {
  background-color: #0073e6;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #005bb5;
}

/* Features Section */
.features {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.features h2 {
  color: #0073e6;
  margin-bottom: 30px;
}

.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.box {
  background-color: #f0f7ff;
  padding: 25px;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.box h3 {
  color: #0073e6;
  margin-bottom: 10px;
}

/* News */
.news {
  background-color: #ffffff;
  padding: 60px 0;
}

.news h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0073e6;
}

.news-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.news-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

.news ul {
  list-style-type: disc;
  padding-left: 20px;
  flex: 1;
}

/* About */
.about {
  background-color: #e9f4ff;
  padding: 60px 0;
  text-align: center;

}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about .image {
  flex: 1;
}

.about .image img {
  width: 100%;
  border-radius: 8px;
}

.about .text {
  flex: 1;
}

.about .text h2 {
  margin-bottom: 20px;
  color: #0073e6;
}

/* Footer */
footer {
  background-color: #d9ecff;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #a6cfff;
}

footer p {
  color: #555;
}
