

.crm-erp-banner {
    background: url('images/crm.jpg') no-repeat center center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
  }

  

  .banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: blue;
  }

  .banner-content p {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .banner-content h1 {
      font-size: 2rem;
    }
    
    .crm-erp-banner {
        height: 30vh;
    }

    .banner-content p {
      font-size: 1rem;
    }
  }


.crm-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .crm-section h2 {
      font-size: 32px;
      color: blue;
      margin-bottom: 20px;
    }

    .crm-section p {
      font-size: 18px;
      color: #555;
      margin-bottom: 25px;
    }

    .crm-section ul {
      margin-left: 20px;
      color: #001f3f;
      font-size: 18px;
    }

    @media (max-width: 768px) {
      .crm-banner {
        padding: 60px 15px;
        background-position: center top;
      }

      .crm-section h2 {
        font-size: 24px;
      }

      .crm-section p, .crm-section ul {
        font-size: 16px;
      }

      .crm-section ul {
        margin-left: 0;
        list-style-position: inside;
      }
    }