.container{
    max-width:1100px;
    margin:60px auto;
    padding:20px;
}

.container h1{
    text-align:center;
    color:#d63384;
    margin-bottom:10px;
}

.container>p{
    text-align:center;
    color:#666;
    margin-bottom:40px;
}

.package-options{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.package-card{
    width:320px;
    background:#fff;
    border:2px solid #ececec;
    border-radius:18px;
    padding:25px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
}

.package-card:hover{
    transform:translateY(-5px);
    border-color:#d63384;
}

.package-card input{
    margin-bottom:15px;
}

.package-card h3{
    color:#d63384;
    margin-bottom:15px;
}

.package-card p{
    color:#666;
    line-height:1.8;
}

#durationContainer{
    max-width:700px;
    margin:30px auto;
    padding:25px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

#durationContainer h3{
    color:#d63384;
    margin-bottom:15px;
}

#durationContainer label{
    display:block;
    margin:12px 0;
    cursor:pointer;
}

.btn-primary{
    display:block;
    width:260px;
    margin:35px auto;
    background:#d63384;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.btn-primary:hover{
    background:#b82d70;
}