/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Quicksand, sans-serif;
}

.brand {
  font-family: Pacifico, Arial, Calibri, sans-serif;
}

/* Body styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Header styles */
header {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

.brand-link {
  text-decoration: none;
  color: white;
}

.nav-links {
  font-family: Quicksand, sans-serif;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

/* Hero section styles */
.hero {
  background-image: url('hero-image.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-bg {
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  background-color: #555;
}

.alt1 {
  background-color: #fff;
  padding: 50px;
  text-align: center;
}

.alt1-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.alt1-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.services {
  background-color: #f4f4f4;
  padding: 50px;
  text-align: center;
}

.services-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.services-content ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Contact section styles */
.contact {
  background-color: #333;
  color: #fff;
  padding: 50px;
  text-align: center;
}

.contact-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

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

.footer-content p {
  font-size: 14px;
}

/* Hero section styles
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), #333;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
} */

.btn {
  display: inline-block;
  background-color: #333;
  color: palegoldenrod;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  background-color: #555;
}

.product-heading {
  color: grey;
  font-weight: bold;
}

.description-paragraph {
  padding-left: 50px;
  padding-right: 50px;
  text-align: justify;
}

.news-item {
  text-align: left;
  font-size: 25px;
  margin: 10px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .description-paragraph {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
}

