*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Poppins;
    background:#f6fbfb;
    color:#203864;
}

header{
    display:flex;
    justify-content:space-between;
    padding:20px 6%;
    align-items:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:45px;
}

.logo-area img{
    width:210px;
}

nav{
    display:flex;
    align-items:center;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#203864;
}

.btn-nav{
    background:#16a085;
    color:white;
    padding:12px 25px;
    border-radius:25px;
}

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    padding:60px 6%;
    align-items:center;
}

.hero h1{
    font-size:58px;
    line-height:1.2;
}

.hero p{
    margin:25px 0;
}

.hero button{
    background:#16a085;
    color:white;
    border:none;
    padding:16px 30px;
    border-radius:30px;
}

.hero-right img{
    width:100%;
    border-radius:30px;
}

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:60px 6%;
}

.about img{
    width:100%;
}

.values, #services{
    padding:60px 6%;
}

.cards, .service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.card,.service-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.bracelet-banner{
    padding:60px 6%;
}

.bracelet-banner img{
    width:100%;
    border-radius:20px;
}

.contact{
    background:#16a085;
    color:white;
    text-align:center;
    padding:60px;
}

.leaf{
    position:absolute;
    opacity:0.18;
    z-index:-1;
}

.leaf1{ top:100px; left:30px; width:100px; }
.leaf2{ top:500px; right:40px; width:120px; }
.leaf3{ top:1100px; left:50px; width:90px; }

.family-section{
    padding:70px 6%;
    text-align:center;
}

.family-section img{
    width:100%;
    max-width:1000px;
    border-radius:25px;
    margin-top:30px;
}

.service-card img{
    width:100px;
    margin-bottom:15px;
}

.footer-family{
    width:100%;
    max-width:900px;
    border-radius:25px;
    margin-bottom:30px;
}

.section-title{
    text-align:center;
}

.footer{
    text-align:center;
    padding:20px;
    background:#203864;
    color:white;
}