header {
    
    color: white;
    padding: 40px 0;
    text-align: center;
  }
 
  header h1 {
    margin: 0;
    font-size: 2.3rem;
  } 

  header p {
    margin: 10px 0;
    font-size: 1.2rem;
  } 


  .container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }    

  .section {
    margin-bottom: 60px;
  }

  .section h2 {
    text-align: center;
    font-size: 2.1rem;
    color: #110F3A;
    margin-bottom: 10px;
  } 

  .section p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
    color: #555;
  }

  .service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    transition: transform 0.3s ease;
  }

  .service-card:hover {
    transform: scale(1.02);
  }

  .service-icon {
    background-color: #007bff;
    color: white;
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .service-content h3 {
    margin: 0;
    font-size: 1.3rem;
  
  } 

  .service-content p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #555;
  }
  
