*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f8f7ff;
    color:#111827;
}

.pdf-tool-section{
    width:100%;
    padding:50px 20px;
}

.tool-heading{
    text-align:center;
    margin-bottom:30px;
}

.tool-heading h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.tool-heading p{
    font-size:17px;
    color:#6b7280;
}

.upload-card{
    max-width:1200px;
    margin:0 auto;
    background:#fff;
    border-radius:18px;
    padding:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.10);
}

.upload-box{
    border:2px dashed #c6b6f4;
    border-radius:16px;
    padding:55px 20px;
    text-align:center;
}

.file-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-bottom:25px;
    color:#7438e8;
    font-size:36px;
    font-weight:bold;
}

.pdf-icon,
.jpg-icon{
    width:62px;
    height:62px;
    background:#7438e8;
    color:#fff;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.jpg-icon{
    background:#fff;
    color:#7438e8;
    border:3px solid #7438e8;
}

.upload-box h2{
    font-size:24px;
    margin-bottom:12px;
}

.upload-box p{
    color:#6b7280;
    margin-bottom:22px;
}

.upload-btn,
.convert-btn{
    border:none;
    background:linear-gradient(135deg,#6d28d9,#8b5cf6);
    color:#fff;
    padding:16px 38px;
    font-size:16px;
    font-weight:700;
    border-radius:9px;
    cursor:pointer;
}

.upload-box small{
    display:block;
    margin-top:20px;
    color:#6b7280;
}

.options-box{
    margin-top:15px;
    padding:18px 25px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    display:grid;
    grid-template-columns:1fr 1.5fr 1.5fr 1.5fr 1.8fr;
    gap:25px;
    align-items:center;
}

.option-title{
    font-size:18px;
    font-weight:700;
}

.option-group label{
    display:block;
    font-size:13px;
    font-weight:700;
    margin-bottom:8px;
}

.option-group select{
    width:100%;
    padding:14px 18px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    font-size:15px;
    background:#fff;
}

.convert-btn{
    width:100%;
}

.how-heading{
    text-align:center;
    margin:38px 0 25px;
}

.how-heading h2{
    font-size:25px;
}

.steps{
    max-width:1150px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.step-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:22px;
    border-radius:16px;
    width:30%;
}

.step-icon{
    min-width:80px;
    height:80px;
    background:#f1edff;
    color:#7438e8;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.step-card h3{
    font-size:17px;
    margin-bottom:8px;
}

.step-card p{
    color:#6b7280;
    line-height:1.5;
}

.arrow{
    font-size:34px;
    color:#c4b5fd;
}

.features{
    max-width:1200px;
    margin:35px auto 0;
    background:#f1edff;
    border-radius:14px;
    padding:25px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.feature-icon{
    font-size:34px;
    color:#7438e8;
}

.feature h3{
    font-size:17px;
    margin-bottom:6px;
}

.feature p{
    color:#6b7280;
    font-size:14px;
}

/* Mobile Responsive */
@media(max-width:900px){

    .tool-heading h1{
        font-size:34px;
    }

    .options-box{
        grid-template-columns:1fr;
    }

    .steps{
        flex-direction:column;
    }

    .step-card{
        width:100%;
    }

    .arrow{
        transform:rotate(90deg);
    }

    .features{
        grid-template-columns:1fr;
    }
}

.feature-icon{
    min-width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon svg{
    width:36px;
    height:36px;
    fill:none;
    stroke:#7438e8;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.cut-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f1edff;
    color:#7438e8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    border:2px dashed #7438e8;
}

@media(max-width:600px){

    .cut-icon{
        width:38px;
        height:38px;
        font-size:20px;
    }

}


