.doc-search-page{

    padding:90px 20px;
    text-align:center;

}

.search-box{

    max-width:900px;
    margin:auto;

}

.search-box h1{

    font-size:52px;
    margin-bottom:20px;
    color:white;

}

.search-box p{

    font-size:20px;
    color:#dce7ff;
    margin-bottom:45px;
    line-height:1.8;

}

.search-form{

    display:flex;
    max-width:750px;
    margin:auto;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.2);

}

.search-form input{

    flex:1;
    border:none;
    padding:20px;
    font-size:18px;
    outline:none;

}

.search-form button{

    border:none;
    background:#ffb300;
    padding:0 35px;
    cursor:pointer;
    font-size:18px;
    font-weight:bold;

}

.search-form button:hover{

    background:#ffa000;

}

.search-categories{

    padding:80px 20px;

}

.search-categories h2{

    text-align:center;
    color:white;
    margin-bottom:45px;

}

.category-grid{

    max-width:1200px;
    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.category-card{

    background:white;
    color:#222;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;

}

.category-card:hover{

    transform:translateY(-8px);

}

.category-card h3{

    margin:20px 0 15px;

}

.popular-search{

    padding:60px 20px 100px;
    text-align:center;

}

.popular-search h2{

    color:white;
    margin-bottom:30px;

}

.keyword-list{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;

}

.keyword-list a{

    padding:12px 20px;
    background:white;
    color:#0b3d91;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;

}

.keyword-list a:hover{

    background:#ffb300;
    color:#111;

}

@media(max-width:768px){

.search-box h1{

    font-size:36px;

}

.search-form{

    flex-direction:column;

}

.search-form button{

    padding:18px;

}

}