* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f6ee;
    color: #333;
    margin: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
}

.nav-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-left .logo {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.nav-right ul {
    display: table;
    list-style-type: none;
    align-items: center;
    height: 100%;
    border-spacing: 25px 0;
}

.nav-right ul li {
    height: 100%;
    vertical-align: middle; 
    display: table-cell;
}

.nav-right ul li a {
    color: #333;
    text-decoration: none;
}

.nav-right ul li a:hover {
    color: #a4221e;
}

.fas.fa-globe {
    font-size: 16px;
    color: #333;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* Align to the left */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.section {
    padding: 20px 20px;
    max-width: 800px;
    margin: auto;
    border-top: 1px solid #ccc;
}

h1, h2 {
    color: #333;
    margin-bottom: 10px;
}

p, li {
    margin-bottom: 10px;
}

a {
    color: #a4221e;
}

/* About Section */
.about-container {
    display: flex;
    justify-content: space-between;
}

.about-text {
    width: 60%;
}

.about-photo {
    width: 35%;
    text-align: right;
}

.about-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-list {
    list-style-type: disc;
    padding-left: 20px;
}

.section-list li {
    margin-bottom: 10px;
}

footer {
    position: fixed;
    left: 0px;
    bottom: 0px;
    text-align: center;
    align-items: center;
    font-size: 10px;
    padding: 2px 0 0 0;
    background: #333;
    color: #f9f6ee;
    width: 100%
}

span.date {
    font-weight: bold; 
    text-decoration: none;
}

span.email {
    color: #a4221e;
    text-decoration: underline;
}