header {
    background-color: #00aaff;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: 20px auto;
}

.container h1{
    text-align: center;
    margin-bottom: 30px;
}

.about-section {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin-bottom: 30px;
}

.about-section img {
    max-width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.about-text {
    width: 50%;
    font-size: 18px;
    line-height: 1.6;
    color: #1e1e1e;
}

.about-text p {
    margin-bottom: 20px;
}

.trust h2{
    margin-bottom: 20px;
    margin-top: 40x;
}

.why-choose-us li{
    line-height: 2;
}

.trust ul{
    margin-bottom: 40px;
}


.mission {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission h2 {
    color: #00aaff;
}

footer {
    background-color: #333;
    color: black
    ;
    text-align: center;
    padding: 10px;
}

.footer-link {
    color: #00aaff;
    text-decoration: none;
}

.wa-pulse {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.wa-pulse img {
  width: 100%;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .about-section {
        width: 100%;
        flex-direction: column;
    }

    .about-section img {
        max-width: 100%;
    }

    .about-text {
        width: 100%;
        font-size: 0.8rem;
    }

    .mission {
        font-size: 0.8rem;
        padding: 0.2rem 3vw;
    }
}
