/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 999;
}

.logo{
  font-weight: bold;
  font-size: 16px;
}

.call-btn{
  background: #00c853;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* HERO */
.hero{
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg,#f5f7ff,#ffffff);
}

.hero h1{
  font-size: 20px;
  margin-bottom: 10px;
}

.hero p{
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.btn-primary{
  background: #2962ff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}

/* FEATURES */
.features{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  padding: 20px;
}

.card{
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  font-size: 14px;
}

/* CONTENT */
.content{
  padding: 20px;
  line-height: 1.9;
  color: #333;
}

/* FAQ */
.faq{
  padding: 20px;
}

.faq h2{
  margin-bottom: 10px;
}

.faq details{
  margin-bottom: 10px;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 10px;
}

/* FLOATING BUTTON */
.floating-call{
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #00c853;
  color: #fff;
  padding: 14px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
}

/* FOOTER */
.footer{
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
  margin-top: 30px;
  font-size: 13px;
}