* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
  }
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
  
  body {
    font-family: 'Montserrat', sans-serif;
  }
  hr {
    margin: auto;
    padding-bottom: 20px;
  }
  .hero-3 {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: hsl(38, 22%, 93%);
    padding-bottom: 80px;
  }
  .container {
    width: 100%;
    margin: auto;
    padding-top: 20px;
  }
  .button-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
  }
  .styled-button1 {
    display: inline-block;
    padding: 20px 80px;
    background-color: #808080;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    border: none;
    outline: none;
    transform: skew(-1deg); 
    transition: transform 0.2s ease;
  }
  .styled-button1 .arrow {
    margin-left: 10px;
    font-size: 36px;
  }
  
  .styled-button1:hover {
    transform: skew(-1deg) scale(1.05); 
  }
  .styled-button1::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: #1abc9c; 
    z-index: -1;
    transform: skew(-1deg); 
  }
  
  .styled-button2 {
    display: inline-block;
    padding: 20px 80px;
    background-color: #808080;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    border: none;
    outline: none;
    transform: skew(-1deg); 
    transition: transform 0.2s ease;
  }
  .styled-button2 .arrow {
    margin-left: 10px;
    font-size: 36px;
  }
  
  .styled-button2:hover {
    transform: skew(-1deg) scale(1.05); 
  }
  .styled-button2::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: #A66ABB; 
    z-index: -1;
    transform: skew(-1deg); 
  }

  .styled-button3 {
    display: inline-block;
    padding: 20px 80px;
    background-color: #464646;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    border: none;
    outline: none;
    transform: skew(-1deg); 
    transition: transform 0.2s ease;
  }
  .styled-button3 .arrow {
    margin-left: 10px;
    font-size: 36px;
  }
  
  .styled-button3:hover {
    transform: skew(-1deg) scale(1.05); 
  }
  .styled-button3::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: #505050; 
    z-index: -1;
    transform: skew(-1deg); 
  }
  
  .styled-button4 {
    display: inline-block;
    padding: 20px 80px;
    background-color: #464646;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    border: none;
    outline: none;
    transform: skew(-1deg); 
    transition: transform 0.2s ease;
  }
  .styled-button4 .arrow {
    margin-left: 10px;
    font-size: 36px;
  }
  .styled-button4:hover {
    transform: skew(-1deg) scale(1.05); 
  }
  .styled-button4::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: #2ECABE; 
    z-index: -1;
    transform: skew(-1deg); 
  }
  @media (max-width: 425px) {
    .hero-3 .container {
      padding: 0 15px;
    }
  
    .button-wrapper {
      margin-bottom: 15px;
      text-align: center;
    }
  
    .styled-button1,
    .styled-button2,
    .styled-button3,
    .styled-button4 {
      display: inline-block;
      width: 100%;
      max-width: 300px;
      font-size: 16px;
      padding: 12px 20px;
      box-sizing: border-box;
    }
  
    .arrow {
      margin-left: 5px;
    }
  }
  