body {
    font-family: 'Laila', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo img {
    width: 50px;
    height: auto;
}

.downloadBtn {
    background-color: #8CC0C2;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
    font-size: 14px;
}

.downloadBtn:hover {
    background-color: #7BB489;
}

@media (max-width: 750px) {
    .logo img {
        width: 35px;
    }

    .downloadBtn {
        padding: 6px 12px;
        font-size: 12px;
    }

    header {
        padding: 10px 20px;
    }
}

.intro h1 {
    text-align: center;
    font-size: 26px;
    margin-top: 30px;
}

.intro h4 {
    margin: 0 auto 40px auto;
    text-align: center;
    color: #B1ADAD;
    font-weight: lighter;
    max-width: 600px;
    line-height: 1.6;
}

.intro p {
    font-size: 15px;
    color: #B1ADAD;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 20px auto; 
    line-height: 1.6;
}

.phonesSection {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.phonephone {
  width: 90%;
  max-width: 800px;
  height: auto;
  position: relative;
  z-index: 2; 
  display: block;
  margin: 0 auto;
}

.bubble {
  position: absolute;
  width: 70px;
  height: auto;
  z-index: 1;
  opacity: 0.8;
}

.bubble1 {
  top: -2px;
  left: -10px;
}

.bubble2 {
  bottom: -2px;
  right: -5px;
}

.downloads {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.downloads img {
    width: 450px;
    height: auto;
}

.aboutgc {
    background-image: linear-gradient(70deg,#AEC993,#EDC9D1,#8CC0C2,#7BB489);
    padding: 20px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.aboutgc h3 {
    margin-bottom: 10px;
}
.aboutgc p {
    margin: 10px auto;
    width: 75%;
    font-size: 14px;
    text-align: center;
}
#toggle {
    background-color: #8CC0C2;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro h3 {
    font-size: 20px;
    text-align: center;
}
.intro p {
    font-size: 15px;
    color: #B1ADAD;
    text-align: center;
    max-width: 650px;
}
.pink { 
    color: #EDC9D1; 
    font-weight: bold; 
}
.teal { 
    color: #8CC0C2;
    font-weight: bold; 
}
.green { 
    color: #AEC993;
    font-weight: bold; 
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}
.carouselInside {
    display: flex;
    transition: transform 0.5s ease;
}
.box {
    min-width: 50%;
    padding: 20px;
    text-align: center;
}
.box h4 {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 16px;
}
.box p {
    font-size: 14px;
    color: #7A7A7A;
    line-height: 1.4;
}
.carousel img {
    width: 60px;
    height: 70px;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #AEC993;
    border-radius: 50%;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.prev { left: 0; }
.next { right: 0; }

@media (max-width: 750px) {
  .box {
    min-width: 100%;
  }
}

.title h3 {
    text-align: center;
    color: #AEC993;
}
.howto {
    margin: 40px auto 60px auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    width: 75%;
}
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-left: 40px;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    width: 2px;
    background: #ccc;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}
.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.dot.pink { background-color: #EDC9D1; }
.dot.green { background-color: #AEC993; }

@media (max-width: 900px) {
  .howto {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .bc {
    max-width: 250px;
    height: auto;
  }

  .timeline {
    margin-left: 0;
    width: 100%;
    max-width: 400px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dot {
    margin: 0 auto 10px auto;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

footer {
    background-color: #ededed;
    padding: 30px 20px;
    border: 3px solid;
    border-image: linear-gradient(70deg,#AEC993,#EDC9D1,#8CC0C2,#7BB489);
    border-image-slice: 1;
    text-align: center;
}

.text {
    margin-bottom: 15px;
}
.text h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}
.text p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

.theForm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

#email {
    border-radius: 3px;
    height: 38px;
    border: 1px solid #adadad;
    padding: 0 10px;
    width: 220px;
    font-size: 14px;
}

#submit-btn {
    height: 38px;
    padding: 0 20px;
    background-color: #8CC0C2;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

#submit-btn:hover {
    background-color: #7BB489;
}

.error, .done-hidden {
    flex-basis: 100%; 
    font-size: 12px;
    margin-top: 5px;
}

.hidden {
    display: none;
}

.copyright {
    color: #B1ADAD;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}
