.home-page{
    padding:60px 0;
    background:#f6f8fc;
    min-height:100vh;
}

.hero-section{
    text-align:center;
    margin-bottom:40px;
}

.hero-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#eef2ff;
    color:#5B6CFF;
    font-weight:600;
    margin-bottom:18px;
}

.hero-title{
    font-size:46px;
    font-weight:800;
    color:#222;
    margin-bottom:15px;
}

.hero-description{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.home-alert{
    margin-bottom:30px;
    border-radius:14px;
}

.protect-card{
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.protect-header{
    margin-bottom:30px;
}

.protect-header h2{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.protect-header p{
    margin-top:8px;
    color:#777;
}

.protect-textarea{
    width:100%;
    min-height:280px;
    border:2px solid #e6e6e6;
    border-radius:18px;
    padding:20px;
    font-size:16px;
    resize:vertical;
    transition:.3s;
}

.protect-textarea:focus{
    border-color:#5B6CFF;
    outline:none;
    box-shadow:0 0 0 5px rgba(91,108,255,.12);
}

.advanced-toggle{
    margin:25px 0;
}

.btn-advanced{
    background:#fff;
    border:2px solid #5B6CFF;
    color:#5B6CFF;
    padding:12px 24px;
    border-radius:12px;
    font-weight:700;
}

.btn-advanced:hover{
    background:#5B6CFF;
    color:#fff;
}

.advanced-card{
    background:#fafbff;
    border:1px solid #e8ebff;
    border-radius:18px;
    padding:25px;
    margin-top:20px;
}

.submit-section{
    text-align:center;
    margin-top:35px;
}

.btn-protect{
    border:none;
    border-radius:14px;
    padding:16px 42px;
    font-size:18px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#5B6CFF,#8F5CFF);
    transition:.3s;
    box-shadow:0 15px 35px rgba(91,108,255,.25);
}

.btn-protect:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 45px rgba(91,108,255,.35);
}

.submit-note{
    margin-top:18px;
    color:#666;
}

.terms-text{
    margin-top:10px;
    color:#888;
}

.terms-text a{
    color:#5B6CFF;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:768px){

.hero-title{
    font-size:34px;
}

.protect-card{
    padding:25px;
}

.protect-textarea{
    min-height:220px;
}

}