.faq-section{
    background:#f8f9fa;
    padding:60px 20px;
}

.faq-container{
    max-width:800px;
    margin:auto;
}

.faq-container h2{
    text-align:center;
    margin-bottom:40px;
    font-size:28px;
    color:#111;
}

.faq-item{
    background:#ffffff;
    border-radius:8px;
    margin-bottom:15px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    overflow:hidden;
}

.faq-question{
    width:100%;
    padding:18px;
    background:none;
    border:none;
    text-align:left;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
    padding:0 18px;
}

.faq-answer p{
    margin:15px 0;
    color:#555;
    font-size:15px;
}

.arrow{
    font-size:20px;
    color:#f0b90b;
}

/* container */

.tips-container{
max-width:850px;
margin:0px auto;
background:white;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
overflow:hidden;
}

/* Heading */

.tips-heading{
text-align:center;
margin-top:40px;
margin-bottom:20px;
}

/* title */

.tips-title{
text-align:center;
padding:15px;
background:#077ef5;
color:white;
margin:0;
font-size:20px;
}

/* table */

.tips-table{
width:100%;
border-collapse:collapse;
}

/* header */

.tips-table thead{
background: rgba(12, 20, 54, 0.916);
color:white;
}

.tips-table th{
padding:12px;
font-size:14px;
}

/* rows */

.tips-table td{
padding:10px;
text-align:center;
font-size:12px;
}

/* alternating rows */

.tips-table tbody tr:nth-child(even){
background:#eef7ee;
}

.tips-table tbody tr:nth-child(odd){
background:#ffffff;
}

/* VS style */

.vs{
font-weight:bold;
color: #2ef7c8f8;
}

/* tip highlight */

.tip{
font-weight:bold;
color:#b86b07;
}


/* INFO SECTION */

.info-section{
max-width:900px;
margin:30px auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.info-section h2{
color:#4904c0;
margin-bottom:15px;
}

.info-section p{
color:#080909;
line-height:1.6;
margin-bottom:12px;
}


/* MOBILE DESIGN (NO SIDE SCROLL) */
@media (max-width: 600px){
    .tips-container{
        width:100%;
        margin:0 0px;
    }
    .tips-table th, .tips-table td{
        padding:8px;
        font-size:17px;
    }
    .tips-title{
        font-size:10px;
    }
    .info-section{
        width:100%;
        margin:20px 0px;
        font-size: 13px;
    }
    .info-section h2{
        font-size:15px;
}

@media (max-width: 400px){
    .tips-table th, .tips-table td{
        padding:6px;
        font-size:8px;
    }
    .tips-title{
        font-size:8px;
    }
}
}

/* CSS */

*{
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

.promo-section{
  width:100%;
  display:flex;
  gap:20px;
  align-items:stretch;
  padding:20px;
  background:#f3f3f3;
}

/* WHATSAPP CARD */

.whatsapp-card{
  flex:1.5;
  background:#10c045;
  border-radius:10px;
  padding:22px;
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.top-content{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.icon-box{
  width:65px;
  height:65px;
  min-width:65px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.text-content h2{
  margin:0 0 8px;
  font-size:clamp(20px, 2vw, 34px);
  font-weight:800;
  line-height:1.2;
}

.text-content p{
  margin:0;
  color:rgba(255,255,255,0.92);
  line-height:1.5;
  font-size:clamp(13px, 1vw, 17px);
}

.status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.12);
  padding:10px 18px;
  border-radius:999px;
  margin-top:16px;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#8cff9d;
  box-shadow:0 0 10px #8cff9d;
}

.status span{
  font-size:15px;
  font-weight:700;
}

.join-btn{
  width:100%;
  margin-top:20px;
  background:white;
  border-radius:10px;
  padding:18px 20px;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  transition:0.3s ease;
  box-shadow:0 8px 18px rgba(0, 0, 0, 0.107);
}

.join-btn:hover{
  transform:translateY(-2px);
}

.join-btn i{
  color:#10c045;
  font-size:20px;
}

.join-btn span{
  color:#10c045;
  font-size:clamp(18px, 1.5vw, 28px);
  font-weight:800;
  text-align:center;
}

/* GRID BUTTONS */

.grid-buttons{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.nav-btn{
  background:#02113f;
  color:white;
  text-decoration:none;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px 12px;
  min-height:90px;
  font-size:clamp(16px, 1vw, 22px);
  font-weight:700;
  transition:0.3s ease;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

.nav-btn:hover{
  background:#031957;
  transform:translateY(-2px);
}

/* TABLET */

@media (max-width:900px){

  .promo-section{
    flex-direction:column;
  }

  .grid-buttons{
    width:100%;
  }
}

/* MOBILE */
/* MOBILE */

@media (max-width:600px){

  .top-content{
    flex-direction:row; /* keep icon and text on same line */
    align-items:flex-start;
    gap:12px;
  }

  .icon-box{
    width:50px;
    height:50px;
    min-width:50px;
    font-size:20px;
  }

  .whatsapp-card{
    padding:16px;
    border-radius:10px;
  }

  .text-content h2{
    font-size:16px;
    margin-bottom:4px;
    line-height:1.2;
  }

  .text-content p{
    font-size:11px;
    line-height:1.4;
  }

  .status{
    margin-top:10px;
    padding:7px 14px;
  }

  .status span{
    font-size:13px;
  }

  .join-btn{
    font-size: 12px;
    margin-top:14px;
    padding:10px 12px;
  }

  .grid-buttons{

      grid-template-columns:repeat(2, 1fr);

      gap:12px;

    }

    .nav-btn{

      min-height:50px;

      padding:16px 10px;

      font-size:12px;

      border-radius:10px;

    }
}