/* ===============================
   HEADER
=================================*/
header {
    background: #111;
    color: white;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    
    font-size: 22px;
    letter-spacing: 1px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #f9c74f;
}

body{
font-family: Arial;
margin:0;
background:#f6f6f6;
}

.plans{
display:flex;
justify-content:center;
gap:30px;
padding:60px 20px;
flex-wrap:wrap;
}

.plan1{
background:white;
padding:30px;
width:300px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
border:3px solid #27B239;
transform:scale(1.05);
}

.PRIVATE{
background:white;
padding:30px;
width:300px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
border:3px solid #12E9FF;
transform:scale(1.05);
}

.plan.vip{

background:white;
padding:30px;
width:300px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
border:3px solid #f9c74f;
transform:scale(1.05);
}
.child{
font-size:30px;
font-weight:bold;
margin:20px 0;
}

.price{
font-size:40px;
font-weight:bold;
margin:20px 0;
}


.price span{
font-size:16px;
}

.plan ul{
list-style:none;
padding:0;
margin:20px 0;
}

.plan li{
padding:8px 0;
}

.btn1{
display:inline-block;
padding:12px 25px;
background:#27B239;
color:white;
text-decoration:none;
border-radius:6px;
margin-top:10px;
}

.btn{
display:inline-block;
padding:12px 25px;
background:#12E9FF;
color:white;
text-decoration:none;
border-radius:6px;
margin-top:10px;
}

.vip-btn{
background:#f9c74f;
color:black;
}

.why{
background:white;
padding:60px 20px;
text-align:center;
}

.features{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.features div{
width:250px;
}