    /* General container */
    .contact-container {
        display: flex !important;
     
        gap: 30px;
        margin: 50px auto;
        padding: 20px;
     
        align-items: center;
      }
  
      .notes {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
      }
  
      .notes strong {
        color: #7f0b52;
      }
  
      /* Contact section */
      .contact-section {
        background: #fff;
        padding: 25px 30px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      }
  
      .contact-section h6 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
        border-bottom: 2px solid #660577;
        padding-bottom: 10px;
      }
  
      .form-group {
        margin-bottom: 15px;
      }
  
      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        transition: border 0.3s ease;
      }
  
      .form-group input:focus,
      .form-group textarea:focus {
        border-color: #660577;
        outline: none;
      }
  
      textarea {
        resize: none;
        min-height: 120px;
      }
  
      .btn-submit {
        display: inline-block;
        background: #0d6efd;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
      }
  
      .btn-submit:hover {
        background: #0b5ed7;
      }
  
      /* Responsive */
      @media (max-width: 768px) {
        .contact-container {
        
          padding: 15px;
          margin: 30px auto;
        }
  
        .notes {
          text-align: center;
        }
  
        .contact-section {
          width: 100%;
          padding: 20px;
        }
      }