body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #007bff;
    color: white;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
}

header h1 {
    margin: 0 0 5px 0;
    font-size: 2.5em;
}

header p {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    font-weight: 300;
}

.contact-info a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #cce5ff;
}

.contact-info span {
    margin: 0 10px;
}

main {
    max-width: 900px;
    width: 95%;
    background-color: white;
    padding: 20px 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    border-radius: 8px;
}

h2 {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    margin-top: 30px;
    font-size: 1.5em;
}

.counter-section {
    background-color: #e9ecef;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
}

.counter-section p {
    margin: 0;
    font-weight: 500;
}

#counter {
    font-weight: bold;
    color: #28a745;
    font-size: 1.2em;
}

.job-entry {
    margin-bottom: 25px;
    padding-left: 10px;
    border-left: 3px solid #ccc;
}

.job-entry h3 {
    margin: 0;
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
}

.job-entry h3 span {
    font-weight: normal;
    color: #555;
    font-style: italic;
}

.job-entry .meta {
    margin: 5px 0;
    color: #777;
    font-size: 0.9em;
}

.job-entry ul {
    padding-left: 20px;
    margin-top: 5px;
}

.job-entry li {
    margin-bottom: 5px;
}

/* Icons styling */
.fas, .fab {
    margin-right: 5px;
}

/* UPDATED STYLE FOR THE ARCHITECTURE FOOTNOTE */
.meta-note {
    /* CHANGING BACKGROUND TO BE LIGHT/SEMI-TRANSPARENT */
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Light border */
    color: white; /* Text remains white */
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 0.9em;
    text-align: center;
}

.meta-note a {
    color: #ffc107; /* Contrasting yellow link text */
    font-weight: bold;
    text-decoration: underline;
}
/* Rest of style.css remains the same */
