body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F7F9FB;
    color: #333;
    line-height: 1.0;
}

hr {
    color: #d6d6d6;
    border-width: 1px 0 0 0;
    border-style: solid;
}

header {
    background-color: #E93E3F;
    color: white;
    padding: 20px;
    text-align: center;
}

header p {
    line-height: 1.0;
    letter-spacing: 0.05em;
    font-style: italic;
}

nav {
    background-color: #B51718;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

#page-content-container section {
    padding: 40px 5vw;
}

#page-content-container section:nth-of-type(2n) {
    background-color: white;
}

p, ul, ol {
    line-height: 1.6;
}

.subsection {
    background-color: white;
    border: 1px solid #DDD;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

#page-content-container section:nth-of-type(2n) .subsection {
    background-color: #F7F9FB;
}

.subsection > *:first-child,
section > *:first-child,
.container > *:first-child,
.container > article > *:first-child {
    margin-top: 0;
}

.subsection > *:last-child,
section > *:last-child,
.container > *:last-child {
    margin-bottom: 0;
}

#outro {
    font-size: 18px;
}

footer {
    background-color: #B51718;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

footer #footer-links {
    color: #fa7f80;
}

footer #footer-links a {
    color: #ffffff;
}