/* -----------------------------------------------------
    GLOBAL RESET
----------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

/* -----------------------------------------------------
    TYPOGRAPHY
----------------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

p {
  margin: 0 0 18px;
  color: #333;
  font-size: 18px;
}

strong {
  font-weight: 800;
}

/* -----------------------------------------------------
    CONTAINERS
----------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -----------------------------------------------------
    SECTION SPACING
----------------------------------------------------- */
section {
  padding: 80px 0;
}

.section-light {
  background: #ffffff;
}

.section-grey {
  background: #f4f7fa;
}

.section-dark {
  background: #0a1f44;
  color: #ffffff;
}

/* -----------------------------------------------------
    HERO SECTION
----------------------------------------------------- */
.hero-clean {
  text-align: center;
  padding: 90px 20px;
  background: #f6f8fc;
  border-bottom: 1px solid #e2e6ea;
}

.hero-clean h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-clean p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
}

/* -----------------------------------------------------
    CALL-TO-ACTION BUTTONS
----------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}

.btn-gold {
  background: #ffcc00;
  color: #111;
}

.btn-gold:hover {
  background: #e5b600;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

/* -----------------------------------------------------
    PRODUCT BLOCKS
----------------------------------------------------- */
.product-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 0 20px rgba(0,0,0,0.07);
  margin-bottom: 40px;
}

.product-block h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.product-block ul {
  list-style: none;
  padding: 0;
}

.product-block ul li {
  margin: 10px 0;
  padding-left: 26px;
  position: relative;
  font-size: 18px;
}

.product-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcc00;
  font-weight: 900;
}

/* -----------------------------------------------------
    GRID SYSTEM (Modern)
----------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------
    OFFER HIGHLIGHT BLOCK
----------------------------------------------------- */
.offer-box {
  background: #ffffff;
  border-left: 6px solid #ffcc00;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
  margin: 40px auto;
  max-width: 850px;
}

.offer-box h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

/* -----------------------------------------------------
    BUMP OFFER
----------------------------------------------------- */
.bump-offer {
  background: #fff7d6;
  border: 2px solid #ffcc00;
  padding: 25px;
  border-radius: 14px;
  margin: 40px auto;
  max-width: 900px;
}

.bump-offer h3 {
  color: #b58900;
  margin-bottom: 10px;
}

/* -----------------------------------------------------
    GUARANTEE BOX
----------------------------------------------------- */
.guarantee-box {
  background: #ffffff;
  border: 2px dashed #ffcc00;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
}

.guarantee-box img {
  width: 110px;
  margin: 0 auto 20px;
}

/* -----------------------------------------------------
    FOOTER
----------------------------------------------------- */
.footer {
  padding: 40px 20px;
  text-align: center;
  background: #f4f4f4;
  border-top: 1px solid #e0e0e0;
  font-size: 14px;
  color: #666;
}

.footer a {
  color: #444;
  text-decoration: none;
}

.footer a:hover {
  color: #111;
}
.center{
    	text-align:center;
    }
    .section-title{
    	font-size:36px !important;
    }
    .section-subtitle{
    	color:white;
    	font-size:32px !important;
    }
    .mini{
    	font-size: 18px !important;
    }
    .spacer{
    	min-height:20px;
    }
    .summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-top: 20px;
}

.summary-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.summary-item {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 16px;
  padding: 16px 18px;
  background: #f7f7f7;
  border-radius: 14px;
  border: 1px solid #e1e1e1;
  align-items: center;
}

.summary-item h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: #0a1f44;
}

.summary-item p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

.summary-img {
  width: 80px;
  height: auto;
  border-radius: 8px;
  border: 0px solid #ccc;
}

.summary-value {
  margin-top: 20px;
  font-size: 18px;
}

@media (max-width: 850px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }
}
.nav-menu-footer {
  text-align: center;
}

.nav-menu-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-footer ul li {
  display: inline-block;
  margin: 0 14px; /* spacing between items */
}

.nav-menu-footer ul li a {
  text-decoration: none;
}

