/* style.css */

/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Navigation */
.site-header {
  background-color: #f0f0f0;
  padding: 15px 20px;
}
.main-nav ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.main-nav a:hover {
  color: #0077b6; /* highlight color */
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #ffffff;
  padding: 40px 20px;
}
.hero-content {
  flex: 1;
  min-width: 280px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 2em;
  color: #0077b6;
  margin-bottom: 0.5em;
}
.hero-content p {
  margin-bottom: 1em;
}
.cta-btn {
  display: inline-block;
  background-color: #0096c7;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  background-color: #005f73;
}
.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Products Section */
.products {
  background: #f9f9f9;
  padding: 40px 20px;
}
.products h2 {
  text-align: center;
  margin-bottom: 30px;
}
.product-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}
.product-row.reverse {
  flex-direction: row-reverse;
}
.product-image,
.product-text {
  flex: 1;
  min-width: 280px;
  padding: 15px;
}
.product-text h3 {
  color: #0077b6;
  margin-bottom: 0.5em;
}

/* Reviews Section */
.reviews {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
}
.reviews h2 {
  margin-bottom: 20px;
}
.review {
  margin-bottom: 30px;
}
.review blockquote {
  font-style: italic;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}
.review cite {
  display: block;
  margin-top: 10px;
  color: #666;
}

/* Contact Section */
.contact {
  background: #f9f9f9;
  padding: 40px 20px;
}
.contact h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact label {
  margin-top: 10px;
  font-weight: bold;
}
.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact .required {
  color: red;
}
.contact button.cta-btn {
  margin-top: 20px;
  align-self: flex-start;
  background-color: #0077b6;
}
.contact button.cta-btn:hover {
  background-color: #005f73;
}

/* Footer */
.site-footer {
  background: #f0f0f0;
  padding: 20px;
  text-align: center;
}
