/* Global Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #f5f5f5;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: #eceff1;
  padding: 2.5rem 1rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: #6E126D;
}
.hero p {
  color: #424242;
  margin-top: 0.5rem;
}

/* Product Section */
.product-container {
  display: flex;
  flex-wrap: wrap;
  background: white;
  margin: 2rem auto;
  max-width: 1000px;
  border-radius: 8px;
  overflow: hidden;
}
.product-image, .product-details {
  flex: 1 1 400px;
  padding: 1.5rem;
}
.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.product-details h2, .product-details h3 {
  color: #6E126D;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.product-details ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.cta {
  background: #6E126D;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
}
.cta:hover {
  background: #005b4f;
}

/* Benefits Section */
.benefits {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
}
.benefits h2 {
  color: #6E126D;
  margin-bottom: 1rem;
}
.benefits ul {
  list-style-type: none;
  margin-left: 0;
}
.benefits li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6E126D;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  background: #eceff1;
}
footer p {
  color: #616161;
}
.smallScreen{
  display: none;
}

/* Responsive */
@media screen and (max-width: 1000px) {
  .product-container {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .product-details h2, .product-details h3 {
    font-size: 2.5rem;
  }
  p{
    font-size: 1.5rem;
  }
  .smallScreen{
    display: inherit;
  }
  .cta{
    font-size: 2em;
  }
}
