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

body {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contact-section {
  width: 100%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #fff;
}

p {
  text-align: center;
  margin-bottom: 2rem;
  color: #ddd;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 2px #00c6ff;
}

.contact-form textarea {
  resize: none;
}

.btn {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  margin-top: 1rem;
}

.btn:hover {
  transform: scale(1.02);
  background: linear-gradient(45deg, #0072ff, #00c6ff);
}

.confirmation {
  margin-top: 1rem;
  color: #4ee44e;
  display: none;
  text-align: center;
}
