/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header */
.main-header {
  background-color: #0f172a;
  color: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .logo img {
  height: 50px;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(to right, #11edaa, #265acd);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  flex-wrap: wrap;
}
.hero-content {
  max-width: 500px;
}
.hero-image img {
  max-width: 1000px;
  border-radius: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #facc15;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

/* Features Section */
.features-section {
  padding: 80px 40px;            /* Increased vertical spacing, reduced horizontal for better responsiveness */
  background-color: #ffffff;
  text-align: center;
  max-width: 2000px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;                     /* Increased spacing between cards */
  margin-top: 50px;
}

.feature-card {
  background-color: #f1f5f9;
  border-radius: 12px;
  padding: 25px;
  width: 320px;                 /* Slightly increased for better content space */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 100%;
  height: 200px;                /* Slightly taller for better visibility */
  object-fit: cover;
  border-radius: 10px;
}

.feature-card h3 {
  margin-top: 20px;
  font-size: 1.25rem;
  color: #1e293b;
}


/* About */
.about-section {
  display: flex;
  padding: 100px 300px;
  background-color: #e2e8f0;
  align-items: center;
  flex-wrap: wrap;
}
.about-image img {
  width: 300px;
  border-radius: 10px;
}
.about-content {
  max-width: 600px;
  margin-left: 40px;
}

/* Footer */
.site-footer {
  background-color: #0f172a;
  color: white;
  text-align: center;
  padding: 20px;
}
.site-footer .cta-button {
  margin-top: 10px;
  background-color: #facc15;
  color: black;
}


margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      color: #222;
      line-height: 1.6;
      padding-top: 80px;
    }
    main {
      padding: 20px;
      max-width: 1000px;
      margin: auto;
    }
    section {
      margin-bottom: 30px;
    }
    .highlight {
      background-color: #e0f2fe;
      padding: 15px;
      border-left: 4px solid #0284c7;
      border-radius: 6px;
    }
    .table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }
    .table th, .table td {
      border: 1px solid #ccc;
      padding: 8px;
      text-align: center;
    }
    .table th {
      background-color: #f3f4f6;
    }
    footer {
      background: #1e293b;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }
    @media (min-width: 768px) {
      header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }