body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff; /* White text for contrast */
}

header {
    color: #fff;
    padding: 20px 0;
    text-align: justify;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin-top: 5px;
}

#intro, #services, #about {
    padding: 20px 10%;
}



#services h2, #intro h2 {
    color: #ffffff; /* Ensure headers are visible */
}

#services ul {
    list-style: none;
    padding: 0;
}

#services ul li {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #444; /* Border color slightly lighter than the list item background */
    border-radius: 5px;
}

footer {
    padding: 10px 0;
}

footer p {
    margin: 5px 0;
}

/* This ensures links are visible */
a {
    color: #4dd0e1; /* A light blue color for links */
    text-decoration: none;
}


/* Responsive design for smaller screens */
@media screen and (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    header p, footer p {
        font-size: 1em;
    }
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}


li, a, button {
    text-decoration: none;
}

.logo {
    display: flex;
}

.logo h2 {
    margin-left: 25px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    height: 100px;
    padding-top: 65px;
    padding-bottom: 65px;
}

.nav_links {
    list-style: none;
}

.nav_links li, button {
    display: inline-block;
    margin-left: 20px;
}

.nav_links li a {
    color: white;
    transition:  all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #0088a9;
}

button {
    padding: 9px 25px;
    background-color: rgba(0, 136, 169, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color: white;
}

button:hover {
    background-color: white;
    color: #24252A;
    transition:  all 0.3s ease 0s;
}

#intro * {
    background-color: transparent;
}

#intro {
    background-image: url("/assets/lightsbackground.png");
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center;
}

#services {
    text-align: justify;
}

#services h3 {
    font-size: 17px;
}

#services h4 {
    font-size: 12px;
}

#about {
    text-align: justify;
}

#about h3 {
    font-size: 17px;
}

#about h4 {
    font-size: 12px;
}

#services li {
    display: flex;
}

#services img {
    width: 70px;
    height: 70px;
    margin-right: 20px;
}

#services * {
    background-color: transparent;
}

#services li {
    background-color: #24252A;
}

#services {
    background-image: url("/assets/lightsbackground.png");
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center;
}

body {
    background-image: url("/assets/lightsbackground.png");
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center;
}