* {
  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-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #b8dfff;
}

header h1 {
  font-size: 28px;
  color: #0073e6;
}

nav a {
  color: #333;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #0073e6;
}

/* 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;
}
