body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fffaf7; 
    color: #4b3b36;
}
header {
    background-color: #f9d5d3; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}
nav a {
    text-decoration: none;
    color: #4b3b36;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    color: #a16b5d;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
.contacts {
    background-color: #fff8f6;
    padding: 40px 20px;
    text-align: center;
}

.contacts h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contacts p {
    font-size: 16px;
    color: #6f5c55;
}
.footer-contacts {
    background-color: #f9d5d3;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #4b3b36;
}

.footer-column a {
    text-decoration: none;
    color: #6f5c55;
    margin-bottom: 5px;
}

.footer-column a:hover {
    text-decoration: underline;
}
