body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fdf6e3;
    background-image: url('../assets/tile.png');
    background-repeat: repeat;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 1em 2em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

h1, h2 {
    color: #cc8e35;
    text-align: center;
}

p {
    color: #333;
    line-height: 1.6;
}

nav {
    text-align: center;
    margin-top: 2em;
}

nav ul {
    list-style-type: none;
    padding-left: 0;
}

nav ul li {
    display: inline;
    margin-right: 30px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav a {
    text-decoration: none;
    color: #cc8e35;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover,
nav a:focus {
    color: #ffaf1d;
}

section {
    margin-bottom: 2em;
}

#about, #benefits, #contact {
    background-color: #fff8e7;
    padding: 1em;
    border-radius: 8px;
    margin-bottom: 2em;
}

#contact {
    background-color: #fff8e7;
    padding: 1.5em;
    border-radius: 8px;
}

#contact h2 {
    color: #cc8e35;
}

.contact-item {
    margin-bottom: 1em;
    display: flex;
    align-items: flex-start;
}

.contact-item .label {
    font-weight: bold;
    margin-right: 0.5em;
}

#contact a {
    color: #cc8e35;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact a:hover,
#contact a:focus {
    color: #ffaf1d;
}

#linkedin-profiles .profile-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

#linkedin-profiles .linkedin-profile {
    text-align: left;
}

.linkedin-profile p {
    color: #666;
    margin-top: 0.25em;
}

#contact address {
    font-style: normal;
}

#contact .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#contact img {
    max-width: 100px;
    max-height: 100px;
}

@media screen and (max-width: 480px){
    #contact .wrapper {
        flex-direction: column;
    }

    #contact img {
        align-self: center;
    }
}
