/* Universal Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

nav {
    background-color: #00457C;  /* Dark Blue */
    color: #ffffff;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
    margin: 0 15px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ddd;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;  /* Adjust the padding value if you want more or less space on the sides */
}

.company-name {
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;  /* This provides space between the nav links */
}

h2 {
    border-bottom: 2px solid #00457C; /* Dark Blue */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    text-align: justify; 
}

.container {
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.profile-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-picture {
    width: 100px;
    height: 100px; 
    border-radius: 50%; 
    border: 2px solid #00457C; /* Dark Blue */
    object-fit: cover;
}

/* Contact Page Styles */
.contact-form label {
    display: block;
    margin-bottom: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #aaa;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background-color: #00457C; /* Dark Blue */
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #002851; /* Slightly Darker Blue */
}

/* Miscellaneous styles to refine the overall appearance */
ul, ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

a {
    color: #00457C;  /* Dark Blue */
    transition: color 0.3s;
}

a:hover {
    color: #002851;  /* Slightly Darker Blue */
}

.company-name {
    font-weight: bold;
    margin-right: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;  /* Adjust the padding value if you want more or less space on the sides */
}

.company-name {
    font-weight: bold;
}


