body {
  font-family: var(--font-main);
}

.floating-whatsapp {
  align-items: center;
  background-color: var(--color-seagreen);
  border-radius: 50px;
  bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--color-chiffon-white);
  display: flex;
  font-weight: 700;
  gap: 8px;
  padding: 12px 24px;
  position: fixed;
  right: 30px;
  text-decoration: none;
  transition: transform 0.2s ease;
  z-index: 999;
}

.floating-whatsapp:hover {
  transform: scale(1.05);
}

.whatsapp-icon {
  font-size: 1.3rem;
}

/* GLOBAL RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-image-side {
    gap: 15px;
    padding-bottom: 0;
    width: 100%;
  }

  .about-img {
    height: 300px;
  }

  .about-img:nth-child(2) {
    transform: translateY(0);
  }

  .about-img:nth-child(2):hover {
    transform: scale(1.03);
  }

  .floating-whatsapp {
    bottom: 20px;
    padding: 10px 20px;
    right: 20px;
  }
}