/* === CONTACT PAGE STYLES === */
.hero {
  text-align: center;
  background: linear-gradient(135deg, #ff9f98, #ffd44d);
  padding: 80px 20px;
  color: #fff;
  clip-path: ellipse(100% 85% at 50% 15%);
}

.hero h1 {
  font-size: 75px;
  margin: 0;
  font-family: 'Ranchers', cursive;
}

.box {
  max-width: 1050px;
  margin: 60px auto;
  padding: 20px 20px;
  background-color: #fff;
  border-left: 16px solid #ff9f98;
  border-right: 16px solid #35b2ac;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.box h2 {
  text-align: center;
  font-size: 34px;
  color: #f47174;
  margin-top: 30px;
}

.box h3 {
  text-align: center;
  font-size: 22px;
  color: #f47174;
  margin-bottom: 20px;
}

.box p,
.box ul {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  padding: 20px;
  color: #444;
}

.contact-page {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-page h2 {
  text-align: center;
  font-size: 34px;
  color: #f47174;
}

.contact-info h3 {
  font-size: 25px;
  margin: 10px 0;
  text-align: center;
  color:#f47174;
}

.contact-info p {
  font-size: 16px;
  margin: 10px 0;
  color: #444;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  background-color: #ff9f98;
  color: white;
  border: none;
  padding: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #fd958e;
}