body {
    font-family: system-ui, -apple-system, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f6f8;
    color: #222;
    line-height: 1.6;
}


header {
    width: 100%;
    background: #b63132;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mainContent {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #b63132;
    margin-bottom: 30px;
}

h2 {
    color: #b63132;
    margin-top: 25px;
    padding-left: 10px;
    border-left: 4px solid #b63132;
}

h3 {
    color: #6d3a39;
    margin-top: 15px;
    padding-left: 40px;
}

p {
    margin: 10px 0;
    padding: 0;
    font-size: large;
    padding-left: 70px;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navMenu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: 0.2s;
}

.navMenu a:hover {
    background: rgba(255,255,255,0.2);
}

.FooterSite {
    width: 100%;
    margin-top: 60px;
    padding: 2rem;
    background: #6d3a39;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.navMenuFooter ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.navMenuFooter a {
    color: #ffd1d1;
    text-decoration: none;
}

.navMenuFooter a:hover {
    color: white;
}