/* Base Styles */
body {
  font-family: Georgia, serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #000;
}

.wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

h1 {
  font-size: 24px;
  margin: 0;
  text-align: center;
}

h2 {
  font-size: 18px;
  margin: 10px 0 20px;
  text-align: center;
}

.highlight {
  color: teal;
}

.video-container {
  text-align: center;
  margin: 20px 0;
}

video {
  width: 100%;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.buy-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #495057;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
}

.buy-btn:hover {
  background-color: #343a40;
}

.example-title {
  font-size: 16px;
  margin: 20px 0 10px;
}

.main-image {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* Info Section */
.info-section {
  margin-top: 30px;
  text-align: center;
}

.info-section h3 {
  font-size: 18px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}

.col {
  flex: 1;
  min-width: 250px;
  padding: 10px;
  box-sizing: border-box;
  background: #f9f9f9;
  border-radius: 6px;
}

.col h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.col p {
  font-size: 14px;
  line-height: 1.5;
}

/* What You Get */
.what-you-get {
  margin-top: 30px;
  font-size: 15px;
}

/* Price Section */
.price-section {
  margin-top: 30px;
  text-align: center;
}

.old-price del {
  color: #a00;
  font-weight: bold;
}

.new-price {
  font-size: 20px;
  color: green;
  font-weight: bold;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
  color: #333;
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 16px;
  }

  .columns {
    flex-direction: column;
    align-items: center;
  }

  .col {
    width: 100%;
  }

  .buy-btn {
    width: 100%;
    max-width: 300px;
  }

  video {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 10px;
  }

  .main-image {
    border-radius: 4px;
  }

  .col p, .what-you-get p {
    font-size: 13px;
  }

  .footer {
    font-size: 13px;
    padding: 10px;
  }
}
