:root {
    --primary-color: #008fbc;
    --secondary-color: #156a84;
    --footer-color: #003241;
}

html {
    background-color: var(--secondary-color);
}

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

header {
    background: var(--primary-color);
}

.home-header {
    background: url("/static-sites/loadedmobi/images/background.jpg") no-repeat center center/cover;
    color: white;
    height: 100vh;
    text-align: center;
    position: relative;
}

.header-elements {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    align-items: center;
}

.home-header::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    background: var(--primary-color);
    mix-blend-mode: color;
}

header .header-logo {
    top: 20px;
    left: 20px;
    text-align: left;
}

.header-logo img {
    max-width: 200px;
    max-height: 40px;
}

section {
    min-height: 50vh;
}

header nav {
    position: relative;
    z-index: 999;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

header .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

header .content h1 {
    font-size: 3em;
    margin: 0;
}

header .content p {
    font-size: 16px;
}

header .content a {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.content {
    color: white;
}

.what-we-do {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px;
}

.about,
.faq {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 20px;
}

.footer {
    background-color: var(--footer-color);
    color: white;
    padding: 60px 20px;
}

.about p,
.what-we-do p,
.faq p,
.footer p {
    font-size: 16px;
    line-height: 1.5;
}

.services,
.faqs {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    flex: 1 1 20%;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.faq-item {
    flex: 40%;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.service h3 {
    font-size: 1.5em;
}

.service p {
    font-size: 1em;
}

footer {
    background-color: #001f3f;
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.logo-image {
    max-width: 40%;
}

footer div {
    width: 30%;
}

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

@media screen and (max-width: 768px) {
    header,
    .footer {
        flex-direction: column;
    }

    header {
        gap: 20px;
    }

    footer div {
        width: 100%;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }
}
