.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px;
  }
  
  .contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: fit-content;
  }
  
  .contact-btn {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    background: rgba(163, 217, 238, 0.25); /* Light sky blue with 25% opacity */
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 250px;
  }
  
  .contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: rgba(135, 206, 235, 0.35); /* Slightly less transparent on hover */
  }
  
  .icon-container {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.15); /* More transparent icon background */
  }
  
  .whatsapp .icon-container {
    background: rgba(37, 211, 102, 0.1); /* More transparent green */
  }
  
  .telegram .icon-container {
    background: rgba(0, 136, 204, 0.1); /* More transparent blue */
  }
  
  .whatsapp i {
    color: #25D366;
    font-size: 55px;
  }
  
  .telegram i {
    color: #0088CC;
    font-size: 55px;
  }
  
  .contact-btn span {
    color: #333;
  }
  
  @media (max-width: 768px) {
    .contact-options {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
    }
    
    .contact-btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  }