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

/* Basic body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

/* Header styling */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2em;
    color: #242424;
}

header p {
    font-size: 1.1em;
    color: #7f2a00;
}

/* Section styling */
section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 1.5em;
    color: #444;
    margin-bottom: 10px;
}

section p {
    font-size: 1em;
    color: #555;
}

.separator {
    width: 100%;
    height: 2px;
    margin-top: 5px;
    margin-bottom: 10px;
    background-color: #F4591E;
}

/* Footer styling */
footer {
    min-height: 10vh;             
    background-color: #F4591E;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

footer p {
    font-size: 1em;
    color: #ffffff;
}