body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    background-color: #f5fffa;
    color: #65b891;
  }
  
  .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
  }
  
  h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: left;
    text-transform: uppercase;
  }
  
  .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .images {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  
  .images img {
    width: 350px;
    height: auto;
    object-fit: cover;
    filter: brightness(0.9) sepia(0.2) saturate(1.2) hue-rotate(-20deg);
    opacity: 0.8;
  }
  
  .text-section {
    max-width: 400px;
    text-align: left;
  }
  
  .text-section p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: justify;
  }
  
  .links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .links a {
    color: #65b891;
    text-decoration: none;
    border-bottom: 1px solid #65b891;
    padding-bottom: 2px;
    font-weight: 400;
    text-transform: uppercase;
  }
  
  .socials {
    display: flex;
    gap: 20px;
  }
  .socials-mobile {
    display: none;
  }
  
  .socials img {
    width: 24px;
    height: 24px;
  }

  @media (min-width: 768px) and (max-width: 1199px) {
    h1 {
      font-size: 5rem;
      font-weight: 800;
      margin-bottom: 30px;
      text-align: center;
      text-transform: uppercase;
      margin-top: 0;
    }
    .text-section {
      max-width: 72ch;
      text-align: center;
      margin: auto;
    }
    .images {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin: auto;
    }
    .text-section p {
      text-align: justify;
      margin: auto;
    }
    .links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      margin-bottom: 30px;
      margin-top: 30px;
    }
    .socials {
      display: flex;
      gap: 20px;
      justify-content: center!important;
      align-items: center!important;
    }
  }

  @media (max-width: 767px) {
    .images {
      flex-direction: column;
      align-items: center;
    }
    .socials {
      display: none;
    }
  
    .socials-mobile {
      display: flex;
      justify-content: center!important;
      align-items: center!important;
      margin: auto;
      gap: 20px;
      flex-wrap: wrap;
    }
    .images img {
      width: 100%;
      max-width: 100%;
    }
    h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 30px;
      text-align: center;
      text-transform: uppercase;
      margin-top: 0;
    }
    .text-section {
      max-width: 100%;
      text-align: center;
    }
    .text-section p {
      text-align: justify;
      margin: auto;
    }
    .links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      margin-bottom: 30px;
      margin-top: 30px;
    }
    .image-two {
      display: none;
    }
  }
  @media (max-width: 420px) {
    .images {
      flex-direction: column;
      align-items: center;
    }
  
    .images img {
      width: 100%;
      max-width: 100%;
    }
    h1 {
      font-size: 3rem;
    }
  }
  @media (max-width: 767px) {
    .socials-mobile {
      transform: translateY(30px);
    }
  }
  /* Custom tooltip styles */
.social-icon {
  position: relative;
}

.social-icon::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(101, 184, 145, 0.9);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 200;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.social-icon:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Selector & Scrollbar */
*::-moz-selection {
  color: #eafef3;
  background-color: #004d2d;
}
*::selection {
  color: #eafef3;
  background-color: #004d2d;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #eafef3;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #eafef3;
}
body::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #65b891;
}