body {
  background: #f4f4f4;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.contact-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px 25px;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: center;
  position: relative;
}

/* Logo */
.contact-logo {
  width: 80px;
  margin-bottom: 15px;
}

/* Heading */
.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

/* Message */
.form-message {
  color: green;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3f51b5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #3f51b5;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #2c3ca0;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-container {
    margin: 30px 20px;
    padding: 25px 20px;
  }

  .contact-logo {
    width: 65px;
  }

  .contact-container h2 {
    font-size: 1.6rem;
  }

  .contact-form button {
    font-size: 15px;
  }
}
