/* Basic reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    padding: 20px;
}

.htu, .htr, .htl, .hta {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.htu h2, .htr h2, .htl h2, .hta h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.htu p, .htr p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.htu ul, .htr ul, .htl ul, .hta ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.htu ul li, .htr ul li, .htl ul li, .hta ul li {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Additional styling for images */
.htr {
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
}

.content {
    flex: 1;
}

/* .htr-image {
    height: 850px;
    width: 640px; 
    background-color: #ccc;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
} */
/* .htl-image {
    height:450px;
    width: 550px; 
    background-color: #ccc;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* Styling for setup sections */
.Setup {
    margin-top: 20px;
}

.Setup h2, .Setup h3, .Setup h4 {
    color: #333;
    margin-top: 10px;
}

.Setup ul {
    list-style-type: disc;
    margin-left: 20px;
}

.Setup ul li {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}
.htl-image{

}
/* Adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .htu, .htr, .htl, .hta {
        padding: 15px;
    }
    .htu h2, .htr h2, .htl h2, .hta h2 {
        font-size: 20px;
    }
    .Setup {
        margin-top: 15px;
    }
}
.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgb(0 107 179);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  