*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f5f4ef;

    color:#333;

    line-height:1.6;

}

.container{

    max-width:1000px;

    margin:40px auto;

    background:white;

    border-radius:18px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    overflow:hidden;

}

.header{

    .logoCircle{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:white;

    color:#8e6f4b;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.smallTitle{

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    opacity:.85;

    margin-bottom:10px;

}

.logoText h1{

    margin-bottom:15px;

}
    background:linear-gradient(135deg,#8e6f4b,#b79568);

    color:white;

    text-align:center;

    padding:45px 30px;

}

.header h1{

    font-size:40px;

    margin-bottom:15px;

    font-weight:700;

}

.header p{

    max-width:700px;

    margin:auto;

    font-size:18px;

    opacity:.95;

}

.content{

    padding:40px;

}

label{

    display:block;

    font-size:22px;

    font-weight:bold;

    margin-bottom:15px;

    color:#6d5234;

}

textarea{

    width:100%;

    min-height:170px;

    resize:vertical;

    border:2px solid #ddd;

    border-radius:12px;

    padding:18px;

    font-size:18px;

    transition:.3s;

    outline:none;

}

textarea:focus{

    border-color:#9c7b54;

    box-shadow:0 0 0 5px rgba(156,123,84,.15);

}

.examples{

    margin-top:25px;

    padding:20px;

    background:#faf7f2;

    border-left:5px solid #b79568;

    border-radius:10px;

}

.examples ul{

    margin-top:12px;

    padding-left:22px;

}

.examples li{

    margin-bottom:8px;

}

button{

    width:100%;

    margin-top:30px;

    padding:18px;

    border:none;

    border-radius:12px;

    background:#8e6f4b;

    color:white;

    font-size:20px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#775735;

    transform:translateY(-2px);

}

.book{

    margin-top:30px;

    background:white;

    border-radius:14px;

    padding:25px;

    border:1px solid #ececec;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

.book h2{

    color:#7a5b37;

    margin-bottom:10px;

}

.author{

    margin-bottom:15px;

    color:#666;

}

.why{

    margin-top:18px;

    padding:15px;

    background:#f8f5ef;

    border-left:4px solid #b79568;

    border-radius:8px;

}

.score{

    margin-top:18px;

    color:#777;

    font-size:14px;

}

.footer{

    padding:25px;

    text-align:center;

    color:#777;

    background:#fafafa;

}

@media(max-width:768px){

.container{

    margin:0;

    border-radius:0;

}

.header{

    padding:35px 20px;

}

.header h1{

    font-size:30px;

}

.header p{

    font-size:16px;

}

.content{

    padding:22px;

}

label{

    font-size:20px;

}

textarea{

    min-height:150px;

    font-size:16px;

}

button{

    font-size:18px;

    padding:16px;

}

.book{

    padding:18px;

}

}
.topics{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;

}

.topic{

    width:auto;

    margin:0;

    padding:10px 18px;

    background:#f3ede5;

    color:#6d5234;

    border:1px solid #d8c8b2;

    border-radius:25px;

    font-size:15px;

    cursor:pointer;

    transition:.25s;

}

.topic:hover{

    background:#8e6f4b;

    color:white;

}
