body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

header,
footer {
    background-color: #333;
    color: white;
    padding: 1em 0;
    text-align: center;
}

main {
    flex: 1;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section {
    margin-bottom: 2em;
    width: 100%;
    max-width: 800px;
}

footer {
    width: 100%;
}

button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    color: white;
    background-color: #333;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

.social-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    color: white;
    background-color: #333;
    border: none;
    cursor: pointer;
}

.social-button i {
    margin-right: 8px;
}

.social-button:hover {
    background-color: #555;
}

.profile-photo {
    border-radius: 50%;
    min-width: 250px;
    width: 50%;
    padding: 15px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-photo {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.profile-photo,
.about-photo {
    display: block;
    margin: 0 auto;
    height: auto;
    object-fit: cover;
}


.company-logo {
    display: block;
   width: 150px;
   height: auto;
   align-items: center;
   margin: 0 auto;
}

.about-body {
    padding: 5px;
    width: 100%;
    text-align: center;
}

.image-container {
    padding: 1em;
}

@media (max-width: 768px) {
    .about-photo {
        width: 85%;
    }
}

/* Reset some default browser styles */
body, h1, h2, p, a, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    background-color: #282c34;
    color: white;
    padding: 1em 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5em;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    color: rgb(139, 0, 0);
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: #444;
}

main {
    flex: 1;
    padding: 2em;
    text-align: center;
}

main section {
    margin-bottom: 2em;
}

footer {
    font-size: 0.9rem;
    color: #777;
    padding-top: 1em;
}

footer .social-button {
    background-color: #33333300;
} 

footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 1em 0 0;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

footer ul li a i {
    margin-right: 8px;
}

footer ul li a:hover {
    color: #ddd;
}

.section-title {
    text-align: left;
    padding-bottom: 15px;
}

h2 {
    font-weight: bold;
    color: darkred
}

/* General styling for the list items */
ul.custom-bullets li {
    position: relative;
    padding-left: 25px;  /* Adjust this value based on your icon size */
    margin-bottom: 10px;  /* Adjust spacing between list items */
    text-align: left;
}

/* Custom bullet using Font Awesome */
ul.custom-bullets li::before {
    content: "\f0da";  /* Font Awesome icon Unicode (example: right arrow) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;  /* Ensures the icon uses the solid version */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;  /* Adjust icon size */
    color: #333;  /* Adjust icon color */
}

a.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #111;
    background-color: #eee;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

a.button:hover {
    background-color: #ddd;
}