/* Start custom CSS for html, class: .elementor-element-e2c986e */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Rubik',sans-serif;
    background:#f8f5f2;
}

.documents-section{
    padding:70px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#4B3621;
    margin-bottom:10px;
    font-weight:600;
}

.section-title p{
    color:#666;
    font-size:16px;
}

.documents-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.document-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s ease;
    border-top:5px solid #6F4E37;
}

.document-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    background:#6F4E37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon i{
    font-size:32px;
    color:#fff;
}

.document-card h3{
    color:#4B3621;
    font-size:24px;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    padding:12px 28px;
    background:#6F4E37;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:500;
    transition:0.3s;
}

.btn:hover{
    background:#4B3621;
}

@media(max-width:768px){
    .section-title h2{
        font-size:30px;
    }
}/* End custom CSS */