* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #F2F3EB ;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-form {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.contact-container {
  width: 100%;
  max-width: 800px;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  color: #333;
  font-size: 2em;
  margin-bottom: 10px;
}

.form-header i {
  font-size: 2.5em;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 5px rgba(25, 118, 210, 0.2);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  background: #333;
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer; 
  transition: background 0.3s ease, transform 0.2s ease, color 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

button:hover {
  background: white;
  color: #333;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(4, 23, 42, 0.3);
}

button i {
  font-size: 1.2em;
}

.contact-info {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-icon {
  background: #333;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

.info-content h3 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.1em;
}

.info-content p {
  color: #555;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .contact-form {
      padding: 25px;
  }

  .form-header h2 {
      font-size: 1.5em;
  }

  input, textarea {
      padding: 10px;
  }

  button {
      padding: 12px 20px;
  }

  .contact-info {
      padding: 25px;
  }
  .info-item {
      flex-direction: column;
      text-align: center;
  }
}

.row {
  display: flex;
  gap: 20px;
}

.row > div {
  flex: 1;
}

@media (max-width: 480px) {
  .row {
      flex-direction: column;
      gap: 0;
  }
}