body {
    font-family: 'Lato', sans-serif;
    color: #0a2342;
    background-color: #f8f8f8;
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #0a2342;
    color: #f8f8f8;
}

.logo h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

a {
    color: #bca76f;
    text-decoration: none;
}

header a, footer a {
    color: #f8f8f8;
}

.hero {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f8f8f8;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-text {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.about-hero {
    background-image: url('img/about-hero.png');
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #bca76f;
    color: #0a2342;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.thesis, .expertise, .cta {
    padding: 50px;
    text-align: center;
}

section {
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

p {
    line-height: 1.6;
}

.expertise {
    display: flex;
    justify-content: space-around;
}

.expertise-item {
    max-width: 200px;
}

.icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

footer {
    padding: 20px;
    text-align: center;
    background-color: #0a2342;
    color: #f8f8f8;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #bca76f;
    color: #0a2342;
    cursor: pointer;
}