/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 30px;
    margin: auto;
}

p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color-scheme: light;
    box-sizing: border-box;
    color: rgb(0, 0, 0);
}

html {
    font-family: Inter, Ubuntu, Helvetica, Arial, sans-serif;

}

/* Apply a background color and text styles to the entire page */
body {}

/* Style the header */
header {
    height: 150px;

    border-bottom: 1px solid #e8e8e1;
    padding: 20px;
    text-align: center;
}

header .logo img {
    width: 200px;
}


section {
    max-width: 1100px;
    padding: 20px;
    margin: 0 auto 20px auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

section.title {
    display: flex;
    background-image: url(/resources/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    width: 100%;
    height: 250px;
    margin: 0;
    max-width: 100%;
    padding: 0;
}

/* Style the navigation links */
nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

v

/* Style the main sections */
main {}

.welcome-section {
    margin-top: 20px;
}

.welcome-section h2 {
    font-size: 24px;
    color: #333;
}

.welcome-section p {
    margin-top: 20px;
}

.services-section h2 {
    font-size: 24px;
    color: #333;
}

.services-section ol {
    margin-left: 10px;
}

.services-section li {
    margin-top: 10px;
}

.services-section li p {
    color: #555;
    margin: 20px 0;
}

/* Style the footer */
footer {
    color: #fff;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #e8e8e1;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    margin: 10px;
    font-size: 14px;
}

/* Add hover effect to links */
.footer-links a:hover {
    text-decoration: underline;
}