/* ============================
  CONTACT US – Product Section
============================ */

.product-section-2 {
  position: relative;
  padding: 40px 20px;
  background-color: #f6dbae; /* Replace with your desired background color */
  text-align: left;
  overflow: hidden;
  z-index: 1;
}

.product-section-3 {
  position: relative;
  padding: 40px 20px;
  background-color: #e6cc94;
  text-align: left;
  overflow: hidden;
  z-index: 1;
}
.product-section-4 {
  position: relative;
  padding: 40px 20px;
  background-image: url('../contents/img/geometric-bg.jpg'); /* 📸 Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;
  overflow: hidden;
  z-index: 1;
}
.product-section-inner {
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid #5a3e2b; /* Border color */
  padding: 20px;
  background-color: #fff7e6; /* Inner background color */
  box-sizing: border-box;
}


/* ============================
   Section Title
============================ */
.product-section-2 h1 {
  font-size: 25px;
  margin-bottom: 30px; /* Reduced the margin-bottom for less space */
  text-align: center;
  color: #5a3e2b;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.product-section-2 h2 {
  font-size: 25px;
  margin-bottom: 30px; /* Reduced the margin-bottom for less space */
  text-align: center;
  color: #5a3e2b;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.product-section-3 h2 {
  font-size: 25px;
  margin-bottom: 30px; /* Reduced the margin-bottom for less space */
  text-align: center;
  color: #5a3e2b;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.product-section-4 h2 {
  font-size: 25px;
  margin-bottom: 20px;
  color: #5a3e2b;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.product-section-3 h3 {
	max-width: 800px;
  margin: 0 auto 0px; /* Decreased the bottom margin */
  font-size: 20px;
  color: #747f60;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.product-section-4 h3 {
	max-width: 800px;
  margin: 0 auto 0px; /* Decreased the bottom margin */
  font-size: 20px;
  color: #747f60;
  letter-spacing: 1.2px;
  font-weight: 600;
}
/* ============================
   Intro Paragraph
============================ */

.product-intro {
  max-width: 800px;
  margin: 0 auto 0px; /* Decreased the bottom margin */
  font-size: 18px;
  color: #4a3e3e;
  line-height: 1.8;
  font-family: Helvetica, Arial, sans-serif;
  font-style: normal;
}

.product-section-2 .product-intro {
  margin-top: 10; /* Ensure no margin at the top of the paragraph */
}

/* ============================
   Contact Form
============================ */

/* Don't touch body font or padding */
body {
  background-color: #f5f5f5;
  margin: 20;
}

/* Form-specific fonts */
.contact-form,
.contact-form input,
.contact-form textarea,
.contact-form button,
.contact-form label,
.contact-form h2 {
  font-family: Arial, sans-serif;
}

/* Centered heading */
h2 {
  text-align: center;
  color: #333;
  margin-top: 30px;
}

/* Form container */
.contact-form {
  max-width: 400px;
  width: 90%;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Form labels */
.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

/* Inputs and textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Submit button */
.contact-form button {
  width: 100%;
  background-color: #747f60;
  color: white;
  padding: 12px;
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* Mobile adjustments */
@media (max-width: 480px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 16px;
    padding: 14px;
  }

  h2 {
    font-size: 24px;
  }
}
