#dev-tab-contact{
    font-size: 1em;
    color: #666;
    line-height: 1.5;
    font-family: "Ubuntu", sans-serif;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-block {
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .contact-block h3 {
    margin-bottom: 0.5rem;
  }
  
  .contact-form-section {
    margin-top: 2rem;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  .contact-form button {
    background: #0073aa;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  .contact-form button:hover {
    background: #005f8d;
  }

  
  .contact-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .social-icon img {
    width: 24px;
    height: 24px;
    margin-right: 0.6rem;
  }
  
  .social-icon:hover {
    opacity: 0.8;
  }
  
  .social-icon.facebook img { filter: hue-rotate(200deg); }
  .social-icon.linkedin img { filter: hue-rotate(170deg); }
  .social-icon.youtube img { filter: hue-rotate(-20deg); }
  