/* style.css */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  min-width:380px;
}

header {
  background-color: #f0f0f0; /* Light gray background for header */
  padding: 0px;
  text-align: center;
}

h1, h2, h3 {
  font-weight: 600; /* Slightly bolder headings */
}

h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

main {
  padding: 20px;
  max-width: 1024px;
  margin-left: auto;  /* Center the main content */
  margin-right: auto; /* Center the main content */
}

#products {
  padding: 0px; /* Add padding to the section */
}

#products h2 {
  text-align: center;
  margin-bottom: 40px;
}

.product {
  display: flex;
  flex-direction: column; /* Default: vertical stack */
  align-items: center; /* Center horizontally on small screens */
  margin-bottom: 40px;
}


.product .product-content {
  display: flex;
  flex-direction: column; /* Ensure content stacks vertically on small screens */
  align-items: center;  /* Center content horizontally */
  width: 80%; /* Occupy full width on small screens */
  padding:50px;
}


.product img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents a small space below the image in some browsers */
  margin-bottom: 20px; /* Space below image on small screens */
}

.product .description {
  text-align: center; /* Center text on small screens */
}

#social-proof .testimonial {
  margin-bottom: 10px;
  padding: 20px;
  border: 1px solid #eee; /* Even lighter border for testimonials */
  border-radius: 3px;
}

#about {
  margin-top: 40px;
}

#about p {
  padding: 20px;
}

footer {
  background-color: #333; /* Darker background for footer */
  color: #fff;
  padding: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .product {
      flex-direction: row; /* Horizontal layout on larger screens */
      align-items: flex-start; /* Align to top */
      justify-content: flex-start; /* Align to left */
  }



  .product .product-content {
      flex-direction: row; /* Horizontal layout on larger screens */
      align-items: center;
      width: auto; /* No longer needs to be full width */
  }

  .product img {
      max-width: 40%;
      margin-right: 20px; /* Space between image and text */
      margin-left: 20px; /* Space between image and text for reverse layout */
      margin-bottom: 0;
  }

  .product .description {
      text-align: left; /* Left align text on larger screens */
      flex: 1; /* Allow description to take up remaining space */
  }


}
nav {
  background-color: #fff; /* White background for navbar */
  padding: 10px 0; /* Adjust padding as needed */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

nav .container {
  display: flex;
  justify-content: space-between; /* Align logo and button */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;  /* Dark gray for logo text */
}


.logo img {
  margin-right: 10px; /* Space between logo and text */
}

.cta-button {
  background-color: rgb(0, 168, 155); /* Use RGB value directly */
  color: #fff; /* White text */
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap; /* Prevents wrapping */
  overflow: hidden; /* Hides any overflowing text */
  text-overflow: ellipsis; /* Adds ellipsis (...) if text overflows */
}

.cta-button:hover {
  background-color: rgb(0, 128, 115); /* Darker shade - adjust as needed */
}

.hero-banner {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0; /* Adjust padding as needed */
  text-align: center;
}

.hero-banner h1 {
  font-size: 3em;
  margin-bottom: 20px;
}





#customer-logos {
  padding: 40px 20px; /* Adjust padding as needed */
  text-align: center; /* Center the title and logos */
}

#customer-logos h2 {
  margin-bottom: 20px;
}

.logo-container {
  display: flex;
  flex-wrap: wrap; /* Allow logos to wrap onto multiple lines */
  justify-content: center; /* Center the logos horizontally */
}

.logo-container img {
  max-width: 70px; /* Adjust max width as needed */
  height: auto;
  margin: 20px; /* Add spacing between logos */
}

#contact a {
  color:white;
}

#contact img {
  margin-left:20px;
  margin-right:20px;
  margin-top: 20px;
}