* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  direction: rtl;
}

.container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
}

.form-box {
  flex: 1 1 400px;
  padding: 30px;
}

.form-box h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
}

.form-box select {
  cursor: pointer;
}

.form-box button {
  background: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.form-box button:hover {
  background: #0056b3;
}

.contact-info {
  flex: 1 1 300px;
  background: #2680eb;
  color: #fff;
  padding: 30px;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.info {
  margin-bottom: 20px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info i {
  font-size: 18px;
  margin-top: 4px;
}

/* ريسبونسف */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .contact-info {
    text-align: right;
  }
}
