/* .order-form {
    background: #f5f5f5;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 420px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
  }
  .order-form h2 {
    margin-bottom: 20px;
    color: #222;
    font-size: 24px;
  }
  .input-group {
    margin-bottom: 20px;
    text-align: left;
  }
  .input-group label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
  }
  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #aaa;
    border-radius: 8px;
    font-size: 16px;
    background: #e0e0e0;
    color: #333;
    outline: none;
    transition: border 0.3s ease-in-out;
  }
  .input-group input:focus,
  .input-group textarea:focus {
    border-color: #888;
  }
  button {
    background: #444;
    color: white;
    padding: 14px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    font-weight: bold;
  }
  button:hover {
    background: #222;
    transform: scale(1.03);
  }
  @media (max-width: 480px) {
    .order-form {
      padding: 30px;
      max-width: 90%;
    }
    button {
      font-size: 16px;
      padding: 12px;
    }
  } */

  #contact {
    background-color: #f9f9f9;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  /* p {
    font-size: 1rem;
    color: black;
    color: #666;
    margin-bottom: 30px;
  } */
  
  .form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, textarea {
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    width: 100%;
  }
  
  input:focus, textarea:focus {
    /* border-color: #0056b3; */
    outline: none;
  }
  
  button {
    padding: 12px 20px;
    background-color: #bb1c1c ;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  button:hover {
    background-color: rgb(rgb(179, 23, 23), rgb(137, 35, 21), rgb(125, 25, 25));
  }

  .footer-flex {
    display: flex;
}

.flex-tech {
    display: flex;
    justify-content: center;
    align-items: center;

}

.red {
  color: #f90505;
}

@media screen and (max-width: 820px) {
    .footer-flex {
        flex-direction: column; /* Например, сделаем элементы в колонку */
       
    }
}
/* ===== ТЁМНАЯ ТЕМА — форма заказа/контакта ===== */
#contact{background-color:#0F1319 !important;color:#E8EBF0 !important}
#contact h2,.contact-container h2{color:#F1F3F6 !important}
.form-container{background-color:#191E26 !important;
  box-shadow:0 8px 22px -12px rgba(0,0,0,.6) !important}
#contact input,#contact textarea,
.form-container input,.form-container textarea{
  background-color:#0F1319 !important;color:#E8EBF0 !important;
  border:2px solid #282E37 !important}
#contact input:focus,#contact textarea:focus,
.form-container input:focus,.form-container textarea:focus{border-color:#EE2E30 !important}
#contact input::placeholder,#contact textarea::placeholder{color:rgba(255,255,255,.45) !important}
#contact button,.form-container button{background-color:#EE2E30 !important;color:#fff !important}
#contact button:hover,.form-container button:hover{background-color:#FF4143 !important}
.red{color:#FF6567 !important}
/* ===== /ТЁМНАЯ ТЕМА ===== */
