    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f8fafc;
      color: #1f2937;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    header img {
      height: 50px;

    }
    nav a {
      margin-left: 1.5rem;
      text-decoration: none;
      color: #1d4ed8;
      font-weight: 600;
    }
    nav a:hover {
      text-decoration: underline;
    }
    .hero {
      text-align: center;
      padding: 4rem 2rem;
      background: linear-gradient(to right, #1d4ed8, #3b82f6);
      color: white;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }
    .contact-btn {
      background-color: #ffffff;
      color: #1d4ed8;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      font-weight: bold;
    }
    section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: auto;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .service-card {
      background-color: white;
      border-radius: 0.75rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      transition: transform 0.3s;
    }
    .service-card:hover {
      transform: translateY(-5px);
    }
    #about{
            text-align: center;
      padding: 2rem;
      background-color: #1d4ed8;
      color: white;
    }
    #contact{
            text-align: center;
      padding: 2rem;
      background-color: #ffffff;
       }
       #contact a{
        background-color: #1d4ed8;
      color: #ffffff;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      font-weight: bold;
       }

        #contact a:hover{
          background-color: #ffffff;
          color: blue;
          padding: 2px;
        }
    footer {
      text-align: center;
      padding: 2rem;
      background-color: #1d4ed8;
      color: white;
    }