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

body{
    font-family: "Segoe UI", Arial, sans-serif;
    background:#f9f5ef;
    color:#333;
    line-height:1.6;
}

header{
    background:#ffffff;
    padding:40px 20px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

header h1{
    font-size:3rem;
    color:#0f4d2f;
    margin-bottom:10px;
}

header p{
    color:#b21f2d;
    font-size:1.3rem;
}

main{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

section{
    background:white;
    border-radius:20px;
    padding:30px;
    margin-bottom:40px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

h2{
    color:#0f4d2f;
    margin-bottom:20px;
    font-size:2rem;
}

img{
    width:100%;
    display:block;
    border-radius:16px;
}

.button{
    display:inline-block;
    margin-top:20px;
    background:#c62828;
    color:white;
    padding:15px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.button:hover{
    background:#0f4d2f;
}

footer{
    text-align:center;
    padding:40px;
    color:#666;
}
