    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f8f8f8;
    }
    .rox_footer {
      background-color: #101820;
      color: #ffffff;
      padding: 60px 20px 30px;
    }
    .rox_footer-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }
    .rox_footer .logo {
      font-size: 26px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: #ff6f00;
    }
    .rox_footer h4,
    .rox_footer h2 {
      font-size: 18px;
      margin-bottom: 15px;
      position: relative;
      text-align: left;
    }
    .rox_footer h4::after,
    .rox_footer h2::after {
      content: '';
      width: 50px;  /* width: 30px; */
      height: 3px;
      /*background: #ff6f00;*/
      background: red;
      position: absolute;
      bottom: -6px;
      left: 0;
    }

    .rox_footer ul {
      list-style: none;
      padding: 0;
      text-align: left;
    }
    .rox_footer ul li {
      margin-bottom: 10px;
    }
    .rox_footer ul li a {
      color: #dcdcdc;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .rox_footer ul li a:hover {
      color: #ff6f00;
    }
    .rox_footer .socials {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }
    .rox_footer .socials a {
      color: #ffffff;
      font-size: 20px;
      transition: color 0.3s ease;
    }
    .rox_footer .socials a:hover {
      color: #ff6f00;
    }
    .rox_footer .newsletter {
      margin-top: 15px;
    }
    .rox_footer .newsletter input[type="email"] {
      padding: 10px;
      width: 70%;
      border: none;
      border-radius: 4px 0 0 4px;
      outline: none;
    }

    .rox_footer .newsletter button {
      padding: 10px 15px;
      border: none;
      background-color: #ff6f00;
      color: white;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }
    .rox_footer-bottom {
      text-align: center;
      margin-top: 40px;
      color: #aaa;
      font-size: 14px;
    }
    .newsletter {
      display: flex;
      flex-wrap: nowrap;
      margin-top: 15px;
    }

    .newsletter input[type="email"] {
      flex: 1;
      padding: 10px;
      border: none;
      border-radius: 4px 0 0 4px;
      outline: none;
    }

    .newsletter button {
      padding: 10px 20px;
      border: none;
      background-color: #ff6f00;
      color: white;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      white-space: nowrap;
    }



