html, body {
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
  margin: 0px;
  padding: 0px;
  background: transparent;
  justify-content: center;
}

/* ===== CTA BOX ===== */
.cta-box {
  position: relative;
  width: 98%;
  max-width: 98%;
  margin: 1rem auto;
  padding: 10px;
  font-family: "Open Sans", arial, sans-serif;
  text-align: center;
  background: #f8fff2;
  border: 2px solid #f0f0f0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -ms-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  -o-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  box-sizing: border-box;  
  -webkit-box-shadow: 0px 4px 10px #132009;
  -moz-box-shadow: 0px 4px 10px #132009;
  box-shadow: 0px 4px 10px #132009;
  justify-items: center;
  display: block;
}

.cta-box h3 {
  margin-bottom: 0.5rem;
}

.cta-box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #555;
}

.cta-link {
  color: #ff9900;
  font-weight: bold;
  text-decoration: none;
}

.cta-link:hover {
  text-decoration: underline;
}

/* ===== CTA BUTTON (shared) ===== */
.cta-button {
  position: relative;
  width: 85%;
  margin: auto;
  padding: 6px 12px;
  cursor: pointer;
  color: rgb(248, 255, 242);
  font-weight: bold;
  font-family: "Open Sans", arial, sans-serif;
  font-size: 1em;
  letter-spacing: 0.2em;
  overflow-wrap: break-word;
  text-align: center;
  text-decoration: rgb(248, 255, 242);
  text-decoration-color: rgb(248, 255, 242);
  text-shadow: 1px 1px 2px #132009;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-transform: uppercase;
  max-width: 85%;
  background: #ff9900;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-top-style: none;
  box-sizing: border-box;
  -webkit-box-shadow: 0 4px 5px #132009;
  -moz-box-shadow: 0 4px 5px #132009;
  box-shadow: 0px 4px 5px #132009;
  margin-bottom: 1.5rem;
  transition: 0.3s;
  display: inline-block;
}

.cta-button a {
  color: rgb(248, 255, 242);
  font-weight: bold;
  text-decoration: none;
}

.cta-button a:hover {
  color: #D6F20D;
  font-weight: bold;
  text-decoration: none;
}

.cta-button:hover {
  color: #D6F20D;
  text-decoration: none;
  background: #cc7a00;
}

/* ===== COMPARISON TABLE ===== */
/* Comparison Table */
.comparison-table {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 2rem auto;
  font-size: 1em;
  border-collapse: collapse;
  overflow-x: auto;
}

.comparison-table table {
  width: 98%;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.comparison-table th {
  background: #f9f9f9;
  font-weight: bold;
}

/* ===== MULTI-GRID ===== */
.product-grid {
  position: relative;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.5rem;
  display: grid;
  background: transparent;
  margin: 1rem auto;
  width: 85%;
  max-width: 85%;
  padding: 5px;
  justify-items: center;
}

.product-card {
  position: relative;
  left: 0rem;
  top: 0rem;
  width: 85%;
  max-width: 85%;
  margin-bottom: 1.5rem;
  padding: 10px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-align: center;
  background: #f8fff2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  justify-content: center;
  display: block;
}

.product-card h4 {
  font-size: 1em;
  color: #132009;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.9em;
  color: #132009;
  margin-bottom: 1rem;
}

.product-card-link {
  color: #ff9900;
  font-weight: bold;
  text-decoration: none;
}

.product-card-link:hover {
  text-decoration: underline;
}

/* ===== PRODUCT CARD BUTTON (shared) ===== */
.product-card-button {
  display: inline-block;
  padding: 12px 24px;
  background: #ff9900;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.product-card-button a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.product-card-button:hover {
  background: #cc7a00;
}

/* ===== PRODUCT IMAGES ===== */
.product-card img,
.cta-box img,
.comparison-table img {
  position: relative;
  height: auto;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}