* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #1DA1F2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.header nav a:hover {
  color: #333;
}

/* MAIN */
.main {
  padding: 50px 0;
}

.wrapper {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* LEFT */
.left {
  width: 50%;
  padding: 50px;
  background: linear-gradient(135deg, #eaf4fb, #d6ecfa);
}

.left h1 {
  color: #1DA1F2;
  margin-bottom: 10px;
}

.tagline {
  margin-bottom: 25px;
  color: #555;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 5px;
}

/* RIGHT */
.right {
  width: 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.right h2 {
  margin-bottom: 25px;
}

/* BUTTONS */
.btn {
  width: 260px;
  text-align: center;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  background: #1DA1F2;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #0d8ae0;
  transform: translateY(-2px);
}

.primary {
  font-size: 16px;
}

/* NAV BUTTON */
.nav-btn {
  border: 2px solid #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  color: #ffffff !important;
  margin-left: 20px;
  font-weight: 600;
  transition: 0.3s;
}

/* Hover effect */
.nav-btn:hover {
  background: #ffffff;
  color: #1DA1F2 !important;
}

/* FAQ SECTION IMPROVEMENT */

.faq-section {
  background: #ffffff;
  padding: 60px 0;
  margin-top: 40px;
}

/* Separator Line */
.faq-divider {
  width: 80px;
  height: 4px;
  background: #1DA1F2;
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

/* Title */
.faq-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 8px;
}

/* Subtitle */
.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
}

/* FOOTER */
footer{
background:#0070f3;
color:#ffffff;
text-align:center;
padding:18px 10px 22px;
font-size:14px;
border-radius:0 0 12px 12px;
margin-top:40px;
}

footer a{
color:#ffffff;
text-decoration:none;
margin:0 6px;
}

footer a:hover{
color:#cce5ff;
}

footer p{
color:#ffffff;
margin:5px 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
    padding: 30px;
  }

  .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* FAQ SECTION */
.faq-section {
  background: #ffffff;
  padding: 60px 0;
}

.faq-title {
  text-align: center;
  margin-bottom: 25px;
}

/* Override your FAQ colors slightly to match site */
#faq-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* Make FAQ cards consistent with your UI */
.faq-item {
  background: #eaf4fb !important;
  border-radius: 6px;
}

.faq-answer {
  background: #ffffff !important;
}

/* CLEAN FINAL FIX — replace ALL your mobile hamburger CSS with this */

@media (max-width:768px){

  /* hide desktop nav */
  .header nav{
    display:none;
  }

  /* header layout */
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* hamburger */
  #hamburger{
    display:block;
    font-size:26px;
    color:#ffffff;        /* white color */
    cursor:pointer;
    margin-left:0;        /* remove auto push */
    padding:5px 10px;     /* clickable area */
    z-index:10001;        /* ensure clickable */
  }

  /* drawer */
  #drawer{
    position:fixed;
    top:0;
    left:-260px;
    width:260px;
    height:100%;
    background:#fff;
    transition:0.3s;
    z-index:10000;
    padding-top:60px;
  }

  #drawer.active{
    left:0;
  }

  #drawer ul{
    list-style:none;
  }

  #drawer li{
    padding:14px 16px;
    border-bottom:1px solid #eee;
    cursor:pointer;
  }

  /* overlay */
  #overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:9999;
  }

  #overlay.active{
    opacity:1;
    visibility:visible;
  }

}

/* hide mobile elements on desktop */
@media (min-width:769px){
  #hamburger,
  #drawer,
  #overlay{
    display:none;
  }
}