/* ==== General Page Styling ==== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffdf8;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, 
  #ffffff, #f5f5f5);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

header p {
  font-size: 1rem;
}

/* ==== Main Container ==== */
.content-container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* ==== Section Styling ==== */
section {
  background-color: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

section h2 {
  color: #c45d00;
  margin-bottom: 1rem;
}

section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

section img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ==== Contact Form Styling ==== */
.contact-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h2 {
  color: #c45d00;
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #444;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #f3a847;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #c45d00;
}

/* ==== Footer ==== */

footer strong {
  color: #ffffff;
}

/* ==== Responsive Design ==== */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
  }

  section img {
    max-width: 100%;
  }

}
body {
  padding-top: 100px;
}