* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Lato', sans-serif;
    background-color: #fef5ef;
    overflow-x: hidden;
  }
  
  .navbar {
    max-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fef5ef;
    padding: 1rem 2rem;
    color: #319FDC;
  }
  
  .navbar-logo img {
    height: 250px;

  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 70px;
  }
  
  .nav-links li a {
    color: #292929;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
  }
  
  .nav-links li a:hover {
    color: #868686;
  }

  .get-started-btn {
    background-color: #319FDC;
    color: #fef5ef;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  .get-started-btn:hover {
    background-color: #2578A6;
  }

  .para-header1 {
    position: absolute;
    top: 130px;
    left: 100px;
  }

  .para-header1 h1 {
    color: #292929;
    font-size: 70px;
  }

  .para-header1 p{
    color: #292929;
    font-size: 45px;
  }

  .para-header2-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    margin-top: 430px;
  }
  
  .para-header2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 430px;
    background-color: #292929;
    z-index: 0;
  }
  
  .para-header2-fg {
    position: relative;
    z-index: 1;
    color: #fef5ef;
    top: 30px;
    left: 100px;
  }

  .para-header2-fg h1 {
    font-size: 55px;
    position: relative;
    z-index: 1;
    color: #fef5ef;
    top: 30px;
    left: 0px;
  }

  .para-header2-fg h2 {
    font-size: 55px;
    position: relative;
    z-index: 1;
    color: #fef5ef;
    top: -250px;
    left: 900px;
  }

  .para-header2-fg p {
    font-size: 30px;
    position: relative;
    z-index: 1;
    color: #fef5ef;
    top: 30px;
    left: 0px;
  }

  .para-header3-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    margin-top: 430px;
  }
  
  .para-header3-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 430px;
    background-color: #fef5ef;
    z-index: 0;
  }

.para-header3-fg {
    position: relative;
    z-index: 1;
    color: #292929;
    top: 30px;
    left: 100px;
  }

.para-header3-fg p {
    font-size: 30px;
    position: relative;
    z-index: 1;
    color: #292929;
    top: -100px;
    left: 0px;
  }