/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 2rem;
  color: #fff;
}

/* Main Content and Sidebar */
.main-content {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
}

.content {
  flex: 3;
  padding: 20px;
}

.sidebar {
  flex: 1;
  padding: 20px;
  background-color: #eaeaea;
}

.sidebar .ad {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid #ccc;
}

/* Sections in a rounded light rectangle */
section {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

h1, h2 {
  text-align: center;
  margin-bottom: 15px;
}

/* Larger sections (except contact) */
.section-large {
  padding: 40px;
  margin-bottom: 50px;
}

/* Increase text size for paragraphs and list items in content sections */
.content section p,
.content section li {
  font-size: 1.1rem;
}

/* Left-align list items in possible uses section */
.possible-uses ul {
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
}

/* Price Styling */
.price {
  font-size: 2rem;
  font-weight: bold;
  color: #e74c3c;
}

/* Buy Direct Section */
.buy-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.buy-button {
  background-color: #0056b3;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.buy-button:hover {
  background-color: #004494;
}

/* Contact Form */
.contact form {
  margin: 0 auto;
  max-width: 500px;
  text-align: left;
}

.contact label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.contact input,
.contact textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background-color: #28a745;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 0 auto;
}

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

#form-response {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}
