<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: #282c34;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 15px;
    transition: background 0.3s;
}

header a:hover {
    background: #61dafb;
    border-radius: 4px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .contact-info {
    text-align: right;
}

header .contact-info p {
    margin: 0;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

header .contact-info img {
    margin-right: 5px;
    height: 20px; /* Adjust as needed */
}

header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav li {
    margin-left: 20px;
}

.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

button {
    background: #61dafb;
    color: #282c34;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background: #21a1f1;
    transform: translateY(-2px);
}

section {
    padding: 60px 0;
    background: #fff;
}

section:nth-of-type(even) {
    background: #f9f9f9;
}

section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

section img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about, .services, .contact, .privacy-policy {
    padding: 60px 0;
}

.about img, .services img, .contact img, .privacy-policy img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.about h2, .services h2, .contact h2, .privacy-policy h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.about p, .services p, .contact p, .privacy-policy p {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services .service {
    display: flex;
    justify-content: space-between;
}

.services .service .column {
    flex-basis: calc(33.33% - 20px); /* Adjust this based on your desired spacing */
    padding: 0 10px;
    text-align: left;
}

.services .service h3 {
    margin-top: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.contact label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact input, .contact textarea, .contact button {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact button {
    background: #282c34;
    color: #fff;
    cursor: pointer;
}

.contact button:hover {
    background: #61dafb;
}

footer {
    background: #282c34;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
    }

    header nav li {
        margin-left: 0;
        text-align: center;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .services .service {
        flex-direction: column;
    }

    .services .service .column {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

.justified-paragraph {
    text-align: justify;
    }

.title {
    margin-bottom: 20px; /* Adjust the value as needed */
}

/* Cookie Consent Banner */
#cookieConsent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(43, 43, 43, 0.9);
    color: #fff;
    text-align: left;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
    max-width: 300px;
}

.cookieConsentContainer {
    display: flex;
    flex-direction: column;
}

.cookieConsentContainer p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookieConsentContainer a {
    color: #ffd700;
    text-decoration: underline;
    font-size: 14px;
}

.cookieConsentContainer button {
    background: #ffd700;
    color: #2b2b2b;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    align-self: flex-end;
}

.cookieConsentContainer button:hover {
    background: #ffcc00;
}</pre></body></html>