#all-contacts {
    padding: 4rem 2rem;
    background: #f9f9f9;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .company-contact {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .company-contact h3 {
    color: #1e174f;
    margin-bottom: 1rem;
  }
  
  .company-contact ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
  }
  
  .company-contact a {
    color: #392a76;
    text-decoration: none;
  }
  
  .company-contact a:hover {
    text-decoration: underline;
  }

  #all-contacts {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
  }
  
  .company-contact {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .company-contact i {
    color: #362b77;
    margin-right: 0.5rem;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .contact-inputs {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .contact-inputs label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .contact-inputs i {
    margin-right: 0.5rem;
    color: #362b77;
  }
  
  .contact-inputs input,
  .contact-inputs textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .submit-button button {
    background-color: #362b77;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .submit-button button:hover {
    background-color: #362b77;
  }
  
