body {
    margin: 0;
    font-family: "Gill Sans MT", sans-serif;
    background-color: #fff;
    color: #564e66;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 2px solid #564e66;
}

.name-stamp {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #555;
}

.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #564e66;
    color: #fff;
    text-align: center;
}

.hero img {
    max-width: 100%;
    height: auto;
    border: 10px solid #fff;
}

.hero h1 {
    font-size: 3em;
    margin: 20px 0;
}

section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 10px;
    border-top: 2px solid #000;
}

.contact-link {
    font-size: 1.2em;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}
