/* Reset some default styles for margin and padding */
body, h1, h2, p, ul, ol, li {
    margin: 0;
    padding: 0;
}

/* Set the default font family and background image */
body {
    font-family: Arial, sans-serif;
    background: url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: transparent;
    padding: 10px;
}

.navbar-logo {
    max-width: 100%;
    height: auto;
}

/* Navigation links */
.nav-links {
    text-align: center;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin: 0 10px;
    padding: 10px 0;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Contact container styles */
.contact-container {
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 10px 0px #ccc;
    border-radius: 5px;
}

/* Heading styles */
h1 {
    text-align: center;
    color: #110433;
}

h2 {
    color: blue;
    text-align: center;
    text-decoration: underline;
}

/* Paragraph text styles */
p {
    color: #000;
    text-align: center;
}

/* List styles */
ul, ol {
    list-style: none;
    padding: 0;
}

ul li, ol li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

ul li:before, ol li:before {
    content: '\2022'; /* Bullet character */
    position: absolute;
    left: 0;
    color: #007BFF;
}

/* Link styles */
a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-align: center;
    margin: 10px 0;
}

a:hover {
    text-decoration: underline;
}

/* Label styles */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Contact information styles */
.contact-info {
    text-align: center;
}

.contact-info strong {
    font-weight: bold;
    display: inline-block;
    width: 120px;
}

/* Input styles */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
}

/* Submit button styles */
input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 10px 0;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Services container styles */
.services-container {
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 10px 0px #ccc;
    border-radius: 5px;
}

.services-container h1 {
    text-align: center;
    color: #110433;
}

.services-container h2 {
    color: blue;
    text-align: center;
    text-decoration: underline;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.services-list li:before {
    content: '\2022'; /* Bullet character */
    position: absolute;
    left: 0;
    color: #007BFF;
}
/* Style the footer */
footer {
    text-align: center;
    background-color: #3949ab;
    color: #fff;
    padding: 20px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}