*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #DFE8E9;
    padding: 30px;
}
a{
    color: #000;
    text-decoration: none;
}
h1, h2, h3{
    font-size: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    text-transform: uppercase;
}
.say{
    background-color: #fff;
    padding: 40px;
    border-radius: 30px;
}
.logo{
    width: 200px;
}
.home{
    border: none;
    color: #000;
    background-color: #fff;
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
}
.slip{
    margin-top: 30px;
    margin-bottom: 30px;
}
.hike{
    margin-top: 30px;
    margin-bottom: 30px;
}
.ban{
    width: 100%;
    height: auto;
    border-radius: 50px;
}
.enjoy{
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}
.send{
    border-top: 1px solid #000;
    padding-top: 10px;
}

.faq-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
  }

  .faq-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
  }

  .faq-item {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    border: 2px solid #000;
    color: #000;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #000;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #fff;
  }
   .whatsapp{
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: pulse 1.5s infinite;
}

.whatsapp img{
    width: 28px;
    height: 28px;
}

@keyframes pulse{
    0%{
        transform: translateX(-50%) scale(1);
    }
    50%{
        transform: translateX(-50%) scale(1.05);
    }
    100%{
        transform: translateX(-50%) scale(1);
    }
}

@media(max-width:576px){
    .whatsapp{
        width: 90%;
        justify-content: center;
        bottom: 15px;
        font-size: 15px;
        padding: 12px 15px;
    }
}

@media only screen and (max-width: 476px){
    body{
        padding: 10px;
    }
    .say{
        padding: 10px;
    }
    .ban{
        border-radius: 0px;
    }
    .enjoy{
        font-size: 25px;
    }
    .logo{
        width: 150px;
        margin-top: 10px;
    }
    h1, h2, h3{
        font-size: 25px;
    }
    p{
        text-align: justify;
    }
    /*.slip{*/
    /*    display: none;*/
    /*}*/
}
@media (min-width: 768px) {
    .hike{
        display: none !important;
    }
}