.contact-section {
  padding: 60px 20px;
  background-color: #1c1c1c;
  color: #fff;
}

.contact-section .section-title {
  text-align: center;
  color: #ffcc00;
  margin-bottom: 20px;
}

.section-description {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #0d0d0d;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #ffcc00;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  background-color: #2d2d2d;
  border: 1px solid #444;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px #ffcc00;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #ffcc00;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}
/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.visible {
  display: flex;
}

.modal-content {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 1.2rem;
  color: #ddd;
}
