body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #b9c1cc;
    color: #fff;
    padding: 5px 0;
    font-size: 15px;
}
.logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo p{
    margin-left: 10px;
    font-size: 20px;
}

.logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 266px; /* Adjusted the margin */
}

nav {
    text-align: right;
}

nav ul {
    list-style: none;
    margin-right: 300px;
    padding: 0;
    display: inline-block; /* Make the entire menu a block */
    border: 2px solid #fff; /* Add a border around the menu */
    border-radius: 5px; /* Optional: Add border radius for a rounded appearance */
    background-color: #fdf9e3; 
}

nav ul li {
    display: inline;
    border-right: 1px solid #fff; /* Add a border to separate menu items */
}

nav ul li:last-child {
    border-right: none; /* Remove the border on the last menu item */
}

nav a {
    text-decoration: none;
    color: #363131;
    font-weight: bold;
    display: inline-block; /* Make the anchor elements block-level */
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}
a{
    text-decoration: none;
    color: #5182b8;
}
nav a:hover {
    background-color: #f9c010;
}

main {
    max-width: 1000px; /* Adjust the maximum width as needed */
    margin: 0 auto;   /* This will center the main content */
    background-color: #e9f1fb;
}
.content-box {
    display: flex;
}

.image {
    flex: 1;
    margin-right: 20px;
}

.image img {
    max-width: 100%;
    height: auto;
}

.text {
    flex: 1.5;
    text-align: justify;
}
 h2{
    padding: 25px;
    background-color: #e5e5e5;
    text-align: center;
    color:#5182b8;
}
h3{
    color: #5182b8;
}

section {
    padding: 40px;
}

footer {
    background-color: #b9c1cc;
    color: #fff;
    text-align: center;
    padding: 35px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
/* Add this to your existing CSS file or create a new one */

.text a.button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: #db545a; /* Button background color */
    padding: 10px 20px;
    border-radius: 5px; /* Optional: Add rounded corners to the button */
    transition: background-color 0.3s ease;
}

.text a.button:hover {
    background-color: #f9c010; /* Change to the desired background color on hover */
}
