*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#e8f2f4;
    color:#1f2937;
}

.container{
    width:1100px;
    margin:auto;
}

nav{
    background:#ffffff;
    padding:18px 0;
    border-bottom:1px solid #e5e7eb;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-weight:700;
    font-size:22px;
    color:#0e7c86;
}

.nav-links a{
    text-decoration:none;
    font-weight:600;
    color:#025247;
    font-size:15px;
}

/* ================= HERO ================= */

.hero{
    background:linear-gradient(135deg,#118a92,#0d6c82);
    background-image:url(hero-bg-banner.jpg);
    background-size:cover;
    background-position: center;
    padding:50px 0 0;
    color:#fff;
    position: relative;
}

.hero-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.full-width-strip{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #069281d4;
}

.full-width-strip p{
    display: flex;
    align-items: center;
    padding:8px 0;
    font-size: 14px;
    text-shadow: 1px 1px 5px #0000008c;
}

.full-width-strip p img{
    margin-right: 10px;
}

.hero-text{
    width:75%;
    padding-bottom: 60px;
}

.hero-text h1{
    font-size:40px;
    font-weight:600;
    line-height:50px;
    margin-bottom:25px;
    text-shadow: 1px 1px 5px #0000008c;
}

.hero-text p{
    font-size:18px;
    margin-bottom:15px;
}

.hero-text p:after {
    margin-top: 15px;
    content: '';
    width: 50%;
    height: 2px;
    background-color: #ffffff;
    display: block;
    opacity: 0.5;
}

.hero-text h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 25px;
}

.primary-btn{
    background: #f9b233;
    padding: 10px 55px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    color: #025247;
    display: inline-block;
}

.hero-image{
    width:40%;
    text-align:right;
}

.hero-image img{
    width:320px;
}

/* ================= SECTION ================= */

section{
    padding:50px 0;
}

.section-title{
    text-align:center;
    font-size:28px;
    font-weight:700;
    color:#0e7c86;
    margin-bottom:50px;
}

/* ================= PROBLEM ================= */
section.problem{
    background-color: #ffffff;
}

.problem-grid{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.problem-item{
    text-align:center;
    width:20%;
}

.icon-circle{
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.icon-circle img {
    width: 110px;
    height: 110px;
}

.problem-item p{
    font-weight: 600;
    font-size: 18px;
    color: #374151;
    padding-top: 25px;
}

/* ================= SOLUTION ================= */

.solution-grid{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:center;
}

.solution-card{
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    width: 240px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: left;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.solution-card img{
    margin-right: 12px;
}

/* ================= APP SECTION ================= */

.app-section {
    background: linear-gradient(135deg, #41c9ab, #069481);
    text-align: center;
    color: #fff;
}

.app-section .section-title.launching{
    margin-bottom: 15px;
}

.store-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    margin:25px 0;
}

.store-buttons img{
    height:90px;
}

/* ================= OUR MISSION SECTION ================= */

section.mission{
    background-color: #ffffff;
}
/*
.section-content p{
    font-size: 18px;
    list-style: 28px;
    text-align: center;
}*/
.section-content p{
    font-size: 16px;
    list-style: 28px;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
}
.section-content h2{
    margin-top: 10px;
    margin-bottom: 10px;
}

/* INTERACTION SECTION */

.interaction{
  background:#ffffff;
}

.interaction .section-title{
    margin-bottom:15px;
}

.highlight{
  text-align:center;
}

.highlight h3{
    color: #0f766e;
    margin-bottom: 15px;
}

.highlight p{
    max-width: 700px;
    margin: auto;
    font-weight: 500;
    font-size: 16px;
}
.highlight p.note {
    font-size: 14px;
    font-weight: 500;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.card{
  background:#e8f2f4;
  padding:30px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}
.card:hover{
  transform:translateY(-5px);
}
.icon{
  font-size:32px;
  margin-bottom:15px;
  color:#0f766e;
}

/* ================= DISCLAIMER ================= */

.disclaimer-grid{
    display:flex;
    justify-content:space-between;
    gap:25px;
}

.disclaimer-card{
    background:#fff;
    border-radius:12px;
    width:24%;
    box-shadow:0 6px 16px rgba(0,0,0,0.05);
    border: 1px solid #e4e4e4;
    text-align: center;
}

.disclaimer-card h4 {
    background-color: #3fc7aa63;
    color: #025247;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.disclaimer-card p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    padding: 15px 10px;
}

/* ================= CONTACT ================= */

.contact{
    text-align:center;
    background-color: #ffffff;
}

.contact p{
    color:#025247;
    font-weight: 500;
}

.contact .section-title{
    margin-bottom: 15px;
}

/* ================= FOOTER ================= */
footer {
    background:#069481;
    color: #fff;
    padding: 20px 10px;
    font-size: 14px;
    border-top:1px solid #e5e7eb;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;    
    align-items: center;
}

.footer-right a {
    text-align: right;
    color: #fff;
    text-decoration: none;    
    font-size: 14px;
}

.footer-right a:hover {
    text-decoration: underline;
}
/* ================= RESPONSIVE ================= */

@media(max-width:1200px){
    .container{
        width:90%;
    }
}

@media(max-width:1024px){
.problem-item p {
    font-size: 14px;
    padding-top: 20px;
}
.solution-card{
    font-size: 14px;
}
}

@media(max-width:992px){
    section {
        padding: 25px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .hero-text, .hero-image{
        width:50%;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-text h3 {
        font-size: 16px;
    }

    .primary-btn {
        padding: 5px 30px;
        font-size: 16px;
    }

    .full-width-strip p {
        font-size: 12px;
    }

    .icon-circle img {
        width: 80px;
        height: 80px;
    }

    .problem-item p {
        font-size: 12px;
        padding-top: 10px;
    }

    .solution-card {
        font-size: 12px;
    }

    .problem-grid{
        flex-wrap:wrap;
        justify-content:center;
        gap: 10px;
    }

    .problem-item{
        width:30%;
        margin-bottom:25px;
    }

    .highlight p {
        font-size: 12px;
    }

    .highlight p.note {
        font-size: 12px;
        font-weight: 500;
    }

    .store-buttons img {
        height: 50px;
    }

    .grid {
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
        gap: 15px;
    }
    .card {
        padding: 15px;
    }
    .icon {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .disclaimer-grid{
        flex-wrap:wrap;
    }

    .disclaimer-card{
        width:45%;
        margin-bottom:20px;
    }

    .menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
    z-index: 1;
    gap: 15px;
    width: 280px;
    right: 0;
    left: auto;
  }
}

@media(max-width:767px){
.hero-wrapper {
    flex-wrap: wrap;
}
.hero-text, .hero-image {
    width: 100%;
    text-align: center;
}
.hero-text {
    padding-bottom: 25px;
}
.hero-text h1 {
    font-size: 22px;
    line-height: 30px;
}
.hero-text p {
    font-size: 14px;
    line-height: 22px;
}
.hero-text p:after {
    width: 100%;
}
.hero-text h3 {
    font-size: 14px;
    margin-bottom: 15px;
}
.hero-image img {
    width: 220px;
}
.full-width-strip p {
    font-size: 10px;
}
.problem-item {
    width: 45%;
    margin-bottom: 15px;
}
.icon-circle img {
    width: 60px;
    height: 60px;
}
.solution-card {
    font-size: 12px;
    padding:12px;
    width: 100%;
}
.solution-card img {
    width: 45px;
}
.icon img{
    width: 45px;
}
.disclaimer-card h4 {
    font-size: 16px;
}
.disclaimer-card p {
    font-size: 12px;
    line-height: 20px;
}
.disclaimer-grid {
    flex-wrap: wrap;
    gap: 10px;
}
.disclaimer-card{
    width:100%;
}
.section-subtitle p{
    font-weight: 14px;
}
.store-buttons {
    gap: 10px;
    margin: 15px 0;
}
.store-buttons img {
    height: 35px;
}
.contact p {
    font-weight: 500;
    font-size: 12px;
}
footer {
    padding: 10px;
}
.footer-container {
    display: block;
    text-align: center;
}
.footer-center {
    position: relative;
    align-items: center;
    text-align: center;
    font-size: 12px;
}
.footer-right a {
    text-align:center;
    font-size: 12px;
}
}