body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: rgb(28, 130, 214); /* Change to light blue */
    color: white;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
}

footer {
    background-color: rgb(28, 130, 214); /* Change to light blue */
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.executives {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 200px;
    padding: 20px;
}

.executive {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    text-align: center;
}

.executive img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.executive h3 {
    margin: 50px 0 10px 0;
}

.executive p {
    margin: 5px 0;
}
/* Responsive Container */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Example of a flexible box */
.box {
    flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis */
    margin: 10px;
}
/* existing styles */

.work-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.work-item img {
    max-width: 150px;
    margin-right: 20px;
}

.work-description {
    max-width: 600px;
}
