*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Roboto', 'Inter', sans-serif;
    background:#f4f8f7;
    color:#2d3748;
    line-height:1.7;
    font-size:15px;
}

.container{
    width:95%;
    margin:auto;
    padding:25px 0;
}

.hero-section{
    background:#dff4ee;
    padding:38px 28px;
    border-radius:16px;
    margin-bottom:22px;
}

.hero-section h1{
    font-family:'Inter', sans-serif;
    font-size:34px;
    font-weight:600;
    margin-bottom:14px;
    color:#175c4c;
    line-height:1.3;
    letter-spacing:-0.5px;
}

.hero-section p{
    font-size:16px;
    max-width:900px;
}

.card{
    background:#ffffff;
    padding:26px;
    margin-bottom:22px;
    border-radius:16px;
    box-shadow:0 3px 14px rgba(0,0,0,0.05);
}

.card h2{
    font-family:'Inter', sans-serif;
    font-size:25px;
    font-weight:600;
    margin-bottom:16px;
    color:#1d4f91;
    letter-spacing:-0.3px;
}

.card h3{
    font-family:'Inter', sans-serif;
    font-size:19px;
    font-weight:600;
    margin-bottom:12px;
    color:#175c4c;
    letter-spacing:-0.2px;
}

.info-box{
    background:#f7fbfa;
    padding:20px;
    border-radius:12px;
    margin-top:18px;
    margin-bottom:18px;
}

.price{
    font-size:30px;
    font-weight:700;
    color:#0d7a5f;
    margin:14px 0;
    font-family:'Inter', sans-serif;
    letter-spacing:-0.5px;
}

.large-price{
    font-size:34px;
}

.small-text{
    font-size:13px;
    color:#718096;
}

p{
    margin-bottom:12px;
}

ul{
    padding-left:20px;
    margin-top:12px;
}

li{
    margin-bottom:10px;
}

.highlight-card{
    background:#edf7ff;
}

.pricing-grid{
    display:flex;
    gap:18px;
    margin-top:22px;
    flex-wrap:wrap;
}

.pricing-item{
    flex:1;
    min-width:250px;
    background:#f7fbfa;
    padding:22px;
    border-radius:12px;
}

@media(max-width:768px){

    .container{
        width:97%;
    }

    .hero-section{
        padding:28px 18px;
    }

    .hero-section h1{
        font-size:27px;
    }

    .hero-section p{
        font-size:15px;
    }

    .card{
        padding:20px;
    }

    .card h2{
        font-size:22px;
    }

    .card h3{
        font-size:18px;
    }

    .price{
        font-size:26px;
    }

    .large-price{
        font-size:29px;
    }

    body{
        font-size:14px;
    }

}