
}
table {
    line-height: 170%;
    color: #333;
    font-family: Helvetica, sans-serif;
    font-size: 11px;
    width: 100%;
    border-spacing: 10px;
}
h2 {
    font-family: Georgia, serif;
    font-size: 15px;
    color: #f9f9f9;
    background: #111;
    padding: 2px;
    text-transform: uppercase;
    text-align: center;
}
.section-title {
    margin-bottom: 5px;
    font-family: Georgia, serif;
    font-size: 19px;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    text-shadow: 1px 1px 0px #000000;
}
.profile-section {
    margin-bottom: 8px;
    border-radius: 15px;
    background: #f9f9f9;
    padding: 8px;
}
.profile-section img {
    width: 300px;
    height: 200px;
    background: #aaa;
}
.profile-details {
    margin-bottom: 8px;
    border-radius: 15px;
    background: #f9f9f9;
    padding: 8px;
}
.profile-details p {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
}
.profile-details b {
    display: inline-block;
    margin-right: 5px;
}
.profile-details p:last-child {
    margin-right: 0;
}
.about-section {
    margin-bottom: 8px;
    border-radius: 15px;
    background: #f9f9f9;
    padding: 12px;
    text-align: justify;
    min-height: 837px;
}
.circle-img {
    width: 70px;
    height: 70px;
    border-radius: 65px;
    background: #aaa;
}
.about-title {
    width: 90%;
    margin-top: -45px;
    margin-right: 80px;
    margin-bottom: 30px;
    font-family: Georgia, serif;
    font-size: 15px;
    color: #f9f9f9;
    background: #111;
    padding: 2px;
    text-transform: uppercase;
}
.footer {
    text-align: right;
    letter-spacing: 2px;
    word-spacing: 3px;
    text-transform: uppercase;
    font-size: 7px;
}
.footer a {
    text-decoration: none;
    color: #333;
}

/* Navigation container styling */
nav.nav-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px auto 25px;
}
/* Navigation item styling */
nav.nav-menu a.nav-item {
    padding: 5px 10px;
    border: 4px solid #422d23;
    border-radius: 25px;
    background-color: transparent;
    color: #422d23;
    font-size: 18px;
    font-family: 'Georgia';
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
}
/* Hover effect */
nav.nav-menu a.nav-item:hover {
    background-color: rgba(92,64,51,0.1);
    border-color: #5C4033;
}

