body {
    font-family: 'Montserrat'Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

#navbar ul {
    list-style-type: none;
    padding: 20px;
    background-color: #333;
    overflow: hidden;
    align-items: center;
}

#navbar ul li {
    display: inline;
    padding: 14px 16px;
    align-items: center;
}

#navbar ul li a {
    color: white;
    text-decoration: none;
    display: inline-block;
    align-items: center;
}

#navbar ul li a:hover {
    background-color: #575757;
}

#navbar ul li a.active {
    background-color: #007BFF;
}

#navbar ul li a.active:hover {
    background-color: #0056b3;
}

#navbar ul li a.logo {
    font-size: 1.5em;
    font-weight: bold;
}

#navbar ul li a.logo:hover {
    background-color: #333;
}

#navbar ul li a.button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

#navbar ul li a.button:hover {
    background-color: #0056b3;
}

#navbar ul li a.button:active {
    background-color: #00408f;
}

#navbar ul li a.button:visited {
    color: white;
}

#navbar ul li a.button:link {
    color: white;
}

#navbar ul li a.button:focus {
    background-color: #007BFF;
}

#navbar ul li a.button:after {
    content: "";
    clear: both;
    display: table;
}

#navbar ul li a.button:before {
    content: "";
    clear: both;
    display: table;
}





.social-search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 0 20px;
}

.social-search-bar form input[type="text"] {
    padding: 8px;
    width: 200px;
}

.social-search-bar form input[type="submit"] {
    padding: 8px 16px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.social-search-bar form input[type="submit"]:hover {
    background-color: #575757;
}

.social-media a {
    margin-left: 10px;
    text-decoration: none;
    color: #333;
}

.social-media a:hover {
    text-decoration: underline;
}

#header {
    background-image: url("images/carousel3.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

main {
    padding: 20px;
}

#services ul {
    padding-left: 150px; /* Adjust this value to control the space before the bullet points */
    margin-top: 10px;   /* Adjust this value to control the space above the lists */
}

#services li {
    margin-bottom: 5px; /* Adjust this value to control the space between list items */
}


#footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #575757;
}

.social-icons {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
}

.social-icons img {
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Call to Action Section Styles */
#call-to-action {
    background-color: #007BFF;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#call-to-action .button {
    background-color: #fff;
    color: #007BFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

#call-to-action .button:hover {
    background-color: #f4f4f4;
}
