/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#fff8fb;
color:#444;
line-height:1.8;
}

/* HEADER */

header{
background:linear-gradient(135deg,#ff4f8b,#ff7eb3,#b76dff);
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:999;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

header h1{
color:#fff;
font-size:30px;
font-weight:700;
}

nav{
display:flex;
gap:12px;
flex-wrap:wrap;
}

nav a{
text-decoration:none;
color:#fff;
font-weight:600;
padding:10px 18px;
border-radius:40px;
transition:.35s;
}

nav a:hover{
background:#fff;
color:#ff2c75;
}

/* MAIN */

.container,
main{
width:90%;
max-width:1200px;
margin:50px auto;
}

/* HERO */

.hero{
background:linear-gradient(135deg,#ff5f9e,#ff7fc4,#ffc6df);
padding:70px 40px;
border-radius:25px;
text-align:center;
color:#fff;
margin-bottom:40px;
box-shadow:0 15px 40px rgba(255,80,140,.3);
}

.hero h1{
font-size:45px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
}

/* CONTENT */

h1{
font-size:42px;
color:#ff2c75;
margin-bottom:25px;
}

h2{
margin-top:45px;
margin-bottom:20px;
color:#ff2c75;
font-size:30px;
border-left:6px solid #ff2c75;
padding-left:15px;
}

h3{
margin-top:30px;
color:#7b2cbf;
font-size:24px;
}

p{
margin-bottom:22px;
font-size:18px;
text-align:justify;
}

/* CARD */

.card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
margin:35px 0;
transition:.35s;
}

.card:hover{
transform:translateY(-8px);
}

/* BUTTON */

.btn{
display:inline-block;
margin-top:20px;
padding:15px 35px;
background:linear-gradient(135deg,#ff2c75,#ff7eb3);
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:700;
transition:.35s;
}

.btn:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(255,0,120,.35);
}

/* LIST */

ul{
margin:25px 0;
padding-left:20px;
}

li{
margin:12px 0;
font-size:18px;
}

ul li a{
color:#ff2c75;
text-decoration:none;
font-weight:600;
}

ul li a:hover{
text-decoration:underline;
}

/* IMAGE */

img{
width:100%;
border-radius:18px;
margin:25px 0;
transition:.4s;
}

img:hover{
transform:scale(1.02);
}

/* TABLE */

table{
width:100%;
border-collapse:collapse;
margin:30px 0;
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

table th{
background:#ff2c75;
color:#fff;
padding:16px;
}

table td{
padding:16px;
border-bottom:1px solid #eee;
}

/* CONTACT FORM */

form{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

input,
textarea{
width:100%;
padding:16px;
margin-bottom:20px;
border:2px solid #ffd4e5;
border-radius:12px;
font-size:16px;
outline:none;
transition:.3s;
}

input:focus,
textarea:focus{
border-color:#ff2c75;
}

button{
background:linear-gradient(135deg,#ff2c75,#ff7eb3);
color:#fff;
border:none;
padding:15px 35px;
font-size:17px;
border-radius:50px;
cursor:pointer;
transition:.3s;
font-weight:600;
}

button:hover{
transform:translateY(-4px);
}

/* FOOTER */

footer{
margin-top:70px;
background:#222;
color:#fff;
padding:50px 20px;
text-align:center;
}

footer a{
color:#ff84c2;
text-decoration:none;
margin:0 12px;
}

footer a:hover{
color:#fff;
}

/* BEAUTY INFO BOX */

.info-box{
background:linear-gradient(135deg,#fff,#ffe4f0);
border-left:6px solid #ff2c75;
padding:25px;
border-radius:15px;
margin:35px 0;
}

/* FAQ */

.faq{
background:#fff;
padding:25px;
margin:20px 0;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq h3{
margin-bottom:10px;
}

/* Responsive */

@media(max-width:768px){

header{
flex-direction:column;
padding:20px;
}

header h1{
font-size:24px;
margin-bottom:15px;
}

nav{
justify-content:center;
}

nav a{
padding:8px 14px;
font-size:14px;
}

.hero{
padding:45px 20px;
}

.hero h1{
font-size:30px;
}

h1{
font-size:32px;
}

h2{
font-size:25px;
}

p{
font-size:16px;
}

.container,
main{
width:95%;
}

}