* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.parent {
    font-family: Arial, sans-serif;
    background-color: #f8f8f6;
    color: #222;
    padding: 32px 24px;
    line-height: 1.6;

}
body>    p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    background: #fff;
    border: 0.5px solid #e0e0d8;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 12px 0;
}
h2 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5e5d5d;
    margin: 16px 0;
}


h1 {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    margin-bottom: 28px;
}
.navbar{
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    background: #ffffff0e;
    border: 0.5px solid #e0e0d8;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 12px 0;
}
.nav-links{
    display: flex;
    gap: 20px;
    li{
        list-style: none;
    }
}

.nav-links a{
    text-decoration: none;
    color: black;
}
.cards{
    display: flex;
    gap: 20px;
    margin: 20px;
}
.card{
    flex: 1;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    background: #fff;
    border: 0.5px solid #e0e0d8;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 12px 0;
}
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: #534646;
    color: #555;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
    align-self: stretch;
}