*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f3f4f6;
}

/* ================= CONTAINER ================= */

.essay-container{
    max-width:1100px;
    margin:40px auto;
    padding:20px;
}

.essay-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* ================= HEADER ================= */

.essay-header{
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom:30px;
}

.essay-icon{
    width:80px;
    height:80px;
    background:#f59e0b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    border-radius:20px;
}

.essay-header h1{
    font-size:40px;
    color:#111827;
}

.essay-header p{
    color:#666;
    margin-top:5px;
}

/* ================= INPUTS ================= */

.essay-inputs{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:25px;
}

.essay-inputs input,
.essay-inputs select{
    height:60px;
    border-radius:15px;
    border:2px solid #ddd;
    padding:0 15px;
    font-size:16px;
    outline:none;
}

.essay-inputs input:focus,
.essay-inputs select:focus{
    border-color:#f59e0b;
}

/* ================= BUTTON ================= */

.essay-btn{
    width:100%;
    height:60px;
    border:none;
    background:#f59e0b;
    color:#fff;
    font-size:20px;
    border-radius:15px;
    cursor:pointer;
    transition:0.3s;
}

.essay-btn:hover{
    background:#d97706;
}

/* ================= RESULTS ================= */

.essay-results{
    margin-top:30px;
}

.essay-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff7ed;
    border:1px solid #fed7aa;
    padding:18px;
    border-radius:15px;
    margin-bottom:15px;
}

.essay-text{
    font-size:18px;
    color:#111827;
}

.copy-btn{
    background:#f59e0b;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:10px;
    cursor:pointer;
}

.copy-btn:hover{
    background:#d97706;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .essay-card{
        padding:25px;
    }

    .essay-header{
        flex-direction:column;
        text-align:center;
    }

    .essay-inputs{
        grid-template-columns:1fr;
    }

    .essay-box{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

}