body{
    font-family: "Dosis", Arial, Sans-serif !important;

}
.contact-methods {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 2rem 0;
        flex-wrap: wrap;
      }

      .contact-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 120px;
        text-decoration: none;
        color: white;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 8px;
        text-align: center;
        padding: 15px;
        box-sizing: border-box;
      }

      .contact-button.whatsapp {
        background-color: #25D366;
      }

      .contact-button.telegram {
        background-color: #53C0F0;
      }

      .contact-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
      }

      .contact-button i {
        font-size: 2rem;
        margin-bottom: 10px;
      }

      .contact-button span {
        display: block;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .contact-button {
          width: 100px;
          height: 100px;
          font-size: 0.9rem;
        }
        
        .contact-button i {
          font-size: 1.8rem;
        }
      }

      @media (max-width: 576px) {
        .contact-methods {
          gap: 0.8rem;
        }
        
        .contact-button {
          width: 90px;
          height: 90px;
          font-size: 0.8rem;
          padding: 10px;
        }
        
        .contact-button i {
          font-size: 1.5rem;
          margin-bottom: 8px;
        }
      }