body { 
    font-family:arial, sans-serif;
    background-color:#ffe8d6;
    color:#333333;
    margin:0;
    padding:40px;
    line-height:1.6;
    display:flex;
    flex-direction:column;
    align-items:center;
    }
 h1, h2 { 
    color:#d9480f;
    font-family:'trebuchet ms', sans-serif;
    }
    a{
        color:#d9480f;
        text-decoration:none;
        font-weight:bold;
    }
    a:hover{ 
            text-decoration:underline;
    }
    section{
        margin-bottom:40px;
        max-width:700px;
        width:100%;
        background-color:#fff0e0;
        padding:20px;
        border-radius:12px;
        box-shadow:0 2px 8px rgba(0,0,0,0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    section:hover{
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }