 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: #fff;
      color: #000;
      overflow-x: hidden;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav ul li a {
      text-decoration: none;
      color: #000;
      font-weight: 600;
      position: relative;
    }

    nav ul li a:hover,
    nav ul li a.active {
      color: #004aad;
    }

    nav ul li a:hover::after,
    nav ul li a.active::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #004aad;
      bottom: -4px;
      left: 0;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      height: 3px;
      width: 25px;
      background-color: #000;
      margin-bottom: 5px;
      border-radius: 2px;
    }

    @media screen and (max-width: 768px) {
      nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: center;
      }

      nav.active {
        display: flex;
      }

      nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
      }

      .menu-toggle {
        display: flex;
      }
    }

    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      background-size: cover;
      background-position: center;
      position: relative;
      color: #fff;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      animation: rise 2s ease forwards;
    }

    .hero h1 span {
      color: #004aad;

        text-shadow:
            -0.5px -0.5px 0 white,  /* Top-left shadow */
            0.5px -0.5px 0 white,   /* Top-right shadow */
            -0.5px 0.5px 0 white,   /* Bottom-left shadow */
            0.5px 0.5px 0 white;    /* Bottom-right shadow */
    }

    .hero p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      animation: rise 2.5s ease forwards;
    }

    .hero a {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border: 1.5px solid #004aad;
      background: transparent;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .hero a:hover {
      background-color: #004aad;
    }

    .slider {
      position: relative;
      overflow: hidden;
    }

    .slides {
      display: flex;
      transition: transform 1s ease;
      width: 300%;
    }

    .slide {
      min-width: 100vw;
      height: 100vh;
    }

    .slide1 {
      background-image: url('web-images/sotol-drink-still-life.jpg');
    }

    .slide2 {
      background-image: url('web-images/with-us.jpg');
    }

    .slide3 {
      background-image: url('web-images/we-offer.jpg');
    }
    .core-section {
      background: #fff;
      padding: 4rem 2rem;
      text-align: center;
    }
    .core-title {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #004aad;
    }
    .core-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }
    .core-box {
      border: 0.5px solid transparent;
      width: 300px;
      padding: 2rem;
      transition: border 0.3s;
    }
    .core-box:hover {
      border-color: #004aad;
    }
    .core-box i {
      font-size: 2rem;
      color: #004aad;
      margin-bottom: 1rem;
    }
    .core-box h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }
    .core-box p {
      font-size: 1rem;
    }
    .testimonials{
        background-color: #f0f4f8;
        padding: 4rem 1rem;
    }
    .testimonials div h2{
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        color: #2d3748;
        margin-bottom: 2rem;
    }
    .testimonials-container{
        display: flex; flex-direction: column; gap: 1.5rem;
    }
    .testimonials-container div{
        align-self: flex-start;
        background-color: white;
        padding: 1rem 1.5rem;
        border-radius: 1.5rem 1.5rem 1.5rem 0;
        max-width: 70%;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .testimonials-container div p{
        margin: 0;
        color: #2d3748;
    }

    footer{
        background-color: #004aad;
        color: white;
        padding: 3rem 1rem;
    }
    .socials i{
        color: white;
    }
    