* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Ubuntu+Sans+Mono:ital,wght@0,400..700;1,400..700&display=swap');


.container {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
    display:block;
    width:50%;
}


.logo-img {
    display: block;
    margin: 40px auto 20px auto; /* top, right/left, bottom */
    margin-top:100px;
    width: 64px;
    height: auto;
  }


.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px; /* Optional spacing between images */
  }


/* h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  
  p {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
  } */

h1 {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 36px;
    text-align: center;
    margin-top: 100px;
    margin-bottom:70px;
    letter-spacing: -0.9px;
    
}

h2 {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 36px;
    text-align: center;
    letter-spacing: -0.8px;
    line-height: 110%;
    /* margin-bottom:50px; */
    margin-top:50px;
    
}

h3 {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 36px;
    text-align: left;
    letter-spacing: -0.8px;
    line-height: 110%;
    /* margin-bottom:50px; */
    margin-top:50px;
    
}


h4 {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0px;
    line-height: 110%;
    margin-top:40px;
    margin-bottom:10px;
    color: #848484;
    
}

p {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    letter-spacing: 0px;
    line-height: 110%;
    margin-top:40px;
    margin-bottom:10px;
    
}

.custom-btn {
    padding: 20px 44px;
    background-color: transparent;
    border: 1px solid #141211;
    border-radius: 50px;
 
    color: #141211;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 0 0;
    transition: all 200ms;

    max-width: 358px;
    text-align: center;
    margin:40px;
    margin: 60px auto;         /* this centers the div horizontally */
    display: block;            /* required for margin auto to work */
    width: fit-content;  
  }
  
  .custom-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 1px #141211;
  }
  
  .custom-btn:active {
    transform: translateY(10px);
    box-shadow: 0 0 0;
  }
  
  

.button-style {
    margin: 100px auto;         /* this centers the div horizontally */
    display: block;            /* required for margin auto to work */
    width: fit-content;        /* makes the div fit its content */
    background-color: rgb(255, 255, 255);
    border-radius: 40px;
    border-width: 0;
    color: #000;
    cursor: pointer;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: normal;
    max-inline-size: 458px;
    max-width: 458px;
    overflow: hidden;
    padding-block: 28px;
    padding-inline: 36px;
    text-decoration: none solid #000;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    white-space: nowrap;
    box-shadow: 0 0px 92px rgba(96, 96, 96, 0.4); /* Added shadow */
  }
  

  a {
    color: #848484;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 19px;
    text-align: center;
    margin-top: 100px;
    margin-bottom:30px;
    letter-spacing: -0.3px;
  }




  /* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
      width: 90%;
      padding: 20px;
    }
  
    h1 {
      font-size: 28px;
      margin-top: 60px;
    }
  
    h2 {
      font-size: 20px;
      line-height: 1.5;
      letter-spacing: -0.5px;
      text-align: left;
    }
  
    .custom-btn {
      font-size: 16px;
      padding: 16px 32px;
    }
  
    a {
      font-size: 16px;
    }
  }
  