body {
    width:100%;
    margin:0;
    padding:0;
}

h1, h2, h3, h4, a, ul, li, p {
    font-family:Inter, sans-serif;
}

h1 {
    font-size:64px;
    font-weight:600;
}

h2 {
    font-size:32px;
    font-weight:500;
}

p {
    max-width:355px;
    font-size:15px;
    line-height:28px;
}

.whatbutton {
    width: 255px;
    padding: 10px 20px; /* Adjust padding to your needs */
    background-color: #3051FF;
    color: white;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    margin:10px 0px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    text-decoration: none; /* Removes underline from link */
    display: inline-block; /* Necessary for width to take effect */
  }

.whatbutton:hover {
    background-color: #308FFF;
  }



.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 100px;
}

header {
    max-width: 1200px;
    width:100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.5); /* White background with transparency */
    backdrop-filter: blur(10px); /* Blur effect */
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    z-index: 1;
    justify-content: space-between; 
}

.bookdemoheader {
    text-decoration:none;
    border-radius:10px;
    padding:10px;
    background-color:#000;
    color:#fff;
}

section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 200px;
}

.left-content,
.right-content {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.sidescroller {
  height: 140px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding:20px;
}

.sidescrolltitle {
    padding:0px 20px;
    margin:0px;
}

.examplepuck {
  width: 300px;
  height: 100px;
  margin-right: 20px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 0 3px 17px rgba(56, 79, 198, 0.14);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.examplepuck:hover {
  transform: scale(1.05);
}

.examplepuck-link {
  display: inline-block;
  text-decoration: none;
    cursor: pointer;
}

.examplepuck img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 20px;
}

.examplepuck span {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #000;
}

.left-content video, .right-content video {
        max-width:700px;
    }



.benefits-section {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.benefits-section h2 {
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit {
    padding: 20px;
    background-color: #fff;
    border:1px solid #e6e6e6;
    border-radius: 10px;
    text-align: center;
}

.benefit img {
    width: 200px;
    height: 135px;
    margin-bottom: 10px;
}

.benefit h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit p {
    max-width: 100%;
}


.footer {
    text-align:left;
}

.footer p {
    text-align:left;
    color:#adadad;
    width:100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #212121;
    margin: 15% auto;
    padding: 20px;
    border-radius: 20px;
    box-sizing:border-box;
    width: 375px;
    height: 600px;
    color: white;
    text-align: left;
}

.modal-content h1 {
    margin-bottom:60px;
}

.modal-content p {
    margin-bottom: 20px;
}

.modal-content input[type="email"] {
    width: 335px;
    box-sizing:border-box;
    border-radius:3px;
    padding: 10px;
    margin-bottom: 20px;
}

.modal-content button {
    padding: 10px 20px;
    background-color: #3051FF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



@media screen and (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .left-content img, .right-content img, .left-content video, .right-content video {
        max-width:100%;
    }
    
    .left-content video, .right-content video {
        max-width:100%;
    }
}

@media screen and (max-width: 750px) {

    h1 { 
    font-size:32px;
     }

     header {
        padding: 20px;
     }

    .left-content,
    .right-content {
        width: 100%;
    }

    .examplepuck {
            margin-right:0px;
            margin-left:20px;
          width: 300px;
          height: 100px;
          margin-right: 20px;
          padding: 10px;
          background-color: #fff;
          border: 1px solid rgba(0, 0, 0, 0.1);
          border-radius: 10px;
          display: inline-flex;
          align-items: center;
          box-sizing: border-box;
          box-shadow: 0 3px 17px rgba(56, 79, 198, 0.14);
          transition: transform 0.3s ease;
          cursor: pointer;
    }

    .left-content img, .right-content img, .left-content video, .right-content video {
        max-width:100%;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }

}