@charset "utf-8";
/* CSS Document */

/* Contact Form Styling */
.wrapper.style1 {
  background: #f8f9fb;  /* soft background */
  padding: 3rem 1rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: "Century Gothic", sans-serif;
}

.wrapper.style1 .inner h2,
.wrapper.style1 .inner h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.wrapper.style1 .inner h3 {
  font-weight: normal;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Form Fields */
.wrapper.style1 form input[type="text"],
.wrapper.style1 form input[type="email"],
.wrapper.style1 form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Century Gothic", sans-serif;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.wrapper.style1 form input:focus,
.wrapper.style1 form textarea:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 4px rgba(74, 144, 226, 0.4);
  outline: none;
}

/* Textarea */
.wrapper.style1 form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.wrapper.style1 form button[type="submit"] {
  background: #4a90e2;
  color: #fff;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Century Gothic", sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
}

.wrapper.style1 form button[type="submit"]:hover {
  background: #357ab8;
  transform: translateY(-2px);
}

/* Center button container */
.center-inline {
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  .wrapper.style1 {
    padding: 2rem 1rem;
  }
@media (max-width: 600px) {
  .wrapper.style1 {
    max-width: 100%;
    padding: 1.5rem 1rem;
    margin: 1rem;
  }
}  


