body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    color: #333;
}

body > div {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h3 {
    text-align: center;
    color: #8b4513;
    font-size: 32px;
    margin-bottom: 30px;
    border-bottom: 3px solid #d4a574;
    padding-bottom: 10px;
}

h4 {
    color: #6b3410;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 15px;
}

p {
    line-height: 1.8;
    text-align: justify;
    font-size: 16px;
    color: #555;
}

img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body > div > div {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fafafa;
    border-left: 4px solid #d4a574;
}

br {
    display: none;
}

/* Footer */
footer {
    background-color: #6b3410;
    color: white;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

footer div {
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
    border-left: none;
}

footer p {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

footer a {
    color: #d4a574;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    
}

footer a:hover {
    color: #f5deb3;
    text-decoration: underline;
}

.btn{
    position: relative;
    padding: 5px 10px;
    background: #FFA500;
    text-decoration: none;
    color: white;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;

}