/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

.buy-now-2 {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 25px;
}

.buy-now-2 .buy-header {
  text-align: center;
  margin-bottom: 40px;
}

.buy-now-2 .buy-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.buy-now-2 .highlight-red {
  color: #ff0000;
  font-weight: bold;
  text-decoration: underline;
}

.buy-now-2 .program-offer {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.buy-now-2 .offer-details {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.buy-now-2 .regular-price {
  color: #666;
  font-size: 18px;
}

.buy-now-2 .bonus-text {
  font-size: 24px;
  margin-top: 15px;
}

.buy-now-2 .cta-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.buy-now-2 .order-form {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.buy-now-2 .form-header {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
  margin: -30px -30px 30px;
}

.buy-now-2 .form-header h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.buy-now-2 .secure-note {
  font-size: 14px;
  opacity: 0.9;
}

.buy-now-2 .special-offer {
  text-align: center;
  margin-bottom: 30px;
}

.buy-now-2 .retail-price {
  color: #666;
  font-size: 18px;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.buy-now-2 .offer-text {
  font-size: 24px;
  color: var(--primary-color);
}

.buy-now-2 .highlight-green {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}

.buy-now-2 .product-display {
  text-align: center;
  margin-bottom: 30px;
}

.buy-now-2 .product-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.buy-now-2 .devices-image {
  max-width: 100%;
  height: auto;
  width: 500px;
}

.buy-now-2 .dvd-image {
  max-width: 100%;
  height: auto;
  width: 200px;
}

.buy-now-2 .plus-sign {
  font-size: 36px;
  color: #ff0000;
  font-weight: bold;
}

.buy-now-2 .buy-button-container {
  position: relative;
  margin-bottom: 30px;
}

.buy-now-2 .click-arrow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: auto;
}

.buy-now-2 .buy-button img {
  max-width: 100%;
  height: auto;
  width: 400px;
}

.buy-now-2 .payment-methods {
  margin-bottom: 30px;
}

.buy-now-2 .payment-methods img {
  max-width: 300px;
  height: auto;
}

.buy-now-2 .access-info {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.buy-now-2 .access-info p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.buy-now-2 .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.buy-now-2 .shipping-note {
  color: #ff0000;
  font-weight: bold;
  text-transform: uppercase;
}

.buy-now-2 .important-note {
  background: #ffeb3b;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 30px 0;
}

.buy-now-2 .guarantee {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .buy-now-2 .buy-header h2,
  .buy-now-2 .program-offer,
  .buy-now-2 .offer-details,
  .buy-now-2 .bonus-text,
  .buy-now-2 .cta-text {
    font-size: 20px;
  }

  .buy-now-2 .product-images {
    flex-direction: column;
  }

  .buy-now-2 .devices-image,
  .buy-now-2 .dvd-image {
    width: 100%;
    max-width: 300px;
  }

  .buy-now-2 .plus-sign {
    transform: rotate(90deg);
  }

  .buy-now-2 .buy-button img {
    width: 100%;
    max-width: 300px;
  }
}
