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

  header{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003366;
    /* background: linear-gradient(120deg, #89f7fe, #66a6ff); */
      color: white;
      padding: 0.5rem 1rem;
      text-align: center;
  }

  header img{
    margin-right: 10px;
}

header img{
      margin-right: 10px;
      width: 130px;
      height: 130px;

  }

  header h1 {
    margin: 0;
    font-size: 2.5rem;
  }

  header p {
    margin-top: 0rem;
    font-size: 1.2rem;
    color: #cce0ff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
  }



 /* features */
 .features {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.features-content {
    flex: 1 1 55%;
}

.features-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.features-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #444;
}

.features-content ul {
    list-style: none;
    padding: 0;
}

.features-content ul li {
    margin-bottom: 15px;
    font-size: 1.05em;
    position: relative;
    padding-left: 30px;
}

.features-content ul li::before {
    content: '✔';
    color: #007BFF;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.images {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.images img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }

    .features-content,
    .images {
        flex: 1 1 100%;
    }
}
