* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background-color: #333;
  color: #fff;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 55px;
  margin-right: 10px;
  border-radius: 50%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcc00;
}

.poster {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}

.poster1holder {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background-color: #f4f4f4;
}

.poster1 {
  width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background-color: #f8f4ec;
  border-top: 2px solid #ddd;
  gap: 20px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-text h2 {
  font-family: 'Yeseva One', cursive;
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #4a3f35;
}

.about-text p {
  font-family: 'TT Drugstore', sans-serif;
  font-size: 1.3em;
  color: #333;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits-section {
  padding: 40px;
  background-color: #f8f4ec;
  border-top: 2px solid #ddd;
}

.benefits-section h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2em;
  margin-bottom: 20px;
  color: #4a3f35;
  text-align: center;
}

.benefits-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.benefits-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.benefits-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.benefits-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefit h3 {
  font-family: 'Yeseva One', cursive;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #4a3f35;
}

.benefit p {
  font-family: 'TT Drugstore', sans-serif;
  font-size: 1em;
  color: #333;
}

.explore {
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #ffffff;
  transition-duration: 1s;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.explore:hover {
  background-color: #fce7f5;
  color: #333;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .about-section,
  .benefits-content {
    flex-direction: column;
  }

  .poster1 {
    width: 95%;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 45px;
  }

  .logo p {
    font-size: 1.5em;
  }

  .about-text h2,
  .benefits-section h2 {
    font-size: 1.5em;
  }

  .about-text p,
  .benefit p {
    font-size: 1em;
  }

  .poster {
    height: auto;
    max-height: 300px;
  }
}
@media (max-width: 768px) {
  header nav ul {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
  }
}
