/* General Styling (for second-part (Normal Layout)) */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    white-space: nowrap; 
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image {
    width: 30px;
    height: 30px;
    background-color: black;
    display: inline-block;
}

.name {
    font-weight: bold;
    margin-left: -170px;
    margin-right: 180px;
    display: flex;
    align-items: center;
    gap: 12px; 
}

.nav-links {
    margin-left: auto;
    margin-left: 300px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    margin: 0 5px;
}

.second-part {
    width: 100%;
    border: 1px solid black;
    flex-grow: 1;
}

.profile-image {
    width: 40px;
    height: 40px;
    background-color: black;
}

.name {
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-links a {
    margin: 0 5px;
    text-decoration: none;
    color: black;
}

.title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    color: gray;
    margin-bottom: 80px;
}

.three-columns-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

.three-columns-table td {
    vertical-align: top;
    border: 2px solid black;
    padding: 15px;
}

.three-columns-table td:first-child {
    border-left: none;
}

.three-columns-table td:last-child {
    border-right: none;
}

.first-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.first-column li {
    padding: 10px 0;
    border-bottom: 1px solid black; 
    text-align: left;
    display: block;
    width: 100%;
}

.first-column ul li:last-child {
    border-bottom: none; 
}

.second-column h2 {
    border-bottom: none;
}

.second-column .job:nth-of-type(2) {
    margin-top: 15px; 
}

.second-column .job {
    border-top: 2px solid black;
    padding: 10px 0;
}

.second-column .job a {
    text-decoration: none;
}

.second-column .job:first-of-type {
    border-top: none;
}

.third-column h3 {
    font-weight: normal;
    font-size: 18px;
    margin-bottom: 0;
}

.third-column ul {
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    margin-left: 3px;
}

.third-column ul li {
    margin-bottom: 3px;
}

.third-column ul li::before {
    content: "- "; 
    font-weight: bold; 
}

a {
    color: blue;
    text-decoration: underline;
}

.reviews-2nd-part {
    font-size: 0.95rem;
    text-align: left;
    margin-top: 20px;
    margin-left: 30px;
}

.review-container {
    margin-top: 18px;
    margin-right: 30px;
    display: flex;
    gap: 20px;
}

.review-box {
    flex: 1;
    padding: 15px;
    border: 2px solid black;
    border-radius: 30px; 
    max-width: 250px; 
}

.review-box p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.review-author {
    display: block;
    font-weight: bold;
    color: lightgray;
    margin-top: 10px;
    font-size: 12px;
}

.review-position {
    display: block;
    color: lightgray;
    font-size: 12px;
}

.second-footer {
    font-family: 'Caveat', sans-serif;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10rem;
    padding: 1rem;
}