/* Reset styles */
body,
h1,
h2,
h3,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

nav .logo {
    display: flex;
    align-items: center;
}

nav .logo img {
    width: 258px;
    height: auto;
    margin-right: 10px;
}

nav ul.menu {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

nav ul.menu li {
    display: inline;
    margin-right: 20px;
}

nav ul.menu li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul.menu li a:hover {
    color: lightblue;
}

/* Introduction section */
#introduction {
    position: relative;
    height: 400px;
    background-image: url('images/island1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

#introduction .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#introduction .content {
    text-align: center;
}

#introduction .content h1 {
    font-size: xx-large;
}

#introduction .content p {
    padding: 20px 100px;
    font-size: large;
    line-height: 1.5em
}

/* Executive section */
#executives {
    background-color: #fff;
    padding: 40px 0;
}

#executives .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.executive {
    width: 30%;
    text-align: center;
}

.executive img {
    height: 200px;
    /* Adjust the desired height */
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Contact section */
#contact {
    background-color: #f8f8f8;
    padding: 40px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
}