body {
  background-color: #e8f5e9;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #4caf50;
  color: white;
  padding-right: 10px;
  text-align: center;
  position: fixed;
  z-index: 1000;
  width: 100%;
}

header h1 {
  margin-top: 20px;
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #1b5e20;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  /* padding: 10px 15px; */
  display: block;
}

nav ul li a.active {
  background-color: #2e7d32;
  border-radius: 5px;
}

header nav ul li a:hover {
  text-decoration: underline;
}

.full-post-content {
  display: none; /* Hidden initially */
}

.blog-posts {
  display: flex;
  align-content: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-top: 200px;
  /* padding: 30px 30px; */
}

.post {
  width: 60%;
  background-color: #f9f9f9;
  margin: 15px 0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.post img {
  width: 100%;
  height: auto;
}

.post h2 {
  font-size: 1.5em;
  margin: 15px;
  color: #4caf50;
}

.post p {
  padding: 0 15px;
  font-size: 1em;
  line-height: 1.6;
}

.blog-posts button {
  display: block;
  text-align: center;
  background-color: #2e7d32;
  color: white;
  text-decoration: none;
  padding: 10px;
  margin: 15px;
  border-radius: 5px;
}

.blog-posts button:hover {
  background-color: #28a745;
}

.post:hover {
  transform: translateY(-5px);
}

#hook {
  width: 100%;
  height: 250px;
  background-color: #28a745; /* Green theme to match cleaning products */
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  /* padding: 20px; */
  color: white;
}

.hook {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hook h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #ffffff;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 5px;
}

.hook ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.hook ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #f8f9fa;
}

.hook ul li a {
  text-decoration: none;
  color: #f8f9fa;
}

.hook ul li a:hover {
  color: #c3e6cb;
  cursor: pointer;
}

.hook ul li i {
  color: rgb(238, 235, 235);
  margin-right: 10px;
  font-size: 18px;
}

footer {
  background-color: #28a745;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  position: relative;
}
footer p {
  margin: 0;
  font-size: 0.9em;
}
footer a {
  color: #d4f1f4;
  text-decoration: none;
}
footer a:hover {
  color: #f1faee;
}

.social-icons {
  margin-top: 10px;
}
.social-icons a {
  color: #d4f1f4;
  font-size: 1.1em;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #f1faee;
}

@media screen and (max-width: 500px) {
  body {
    margin: 0px;
    padding: 0px;
  }

  .hook h3 {
    border: none;
    font-size: smaller;
  }
}
