<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #2A9D8F;
    --background-color: #F4F1DE;
    --text-color: #333;
    --header-bg-color: #264653;
    --footer-bg-color: #264653;
    --button-bg-color: #E76F51;
    --button-hover-bg-color: #D1573C;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

.header {
    background-color: var(--header-bg-color);
    padding: 15px 0;
}

.logo-group {
    display: flex;
    gap: 10px;
}

.logo {
    height: 100px;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu a {
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu a:hover {
    background-color: var(--button-bg-color);
    color: var(--background-color);
}

/* Hero Section with Blurred Background and Dark Overlay */
.hero {
    position: relative;
    padding: 100px 20px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.hero::before {
    content: "";
    background: url('7.png') center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(3px); /* Adjust the blur level here */
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity for darker overlay */
    z-index: 2;
}

.hero h1,
.hero p,
.cta-button {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-button {
    background-color: var(--button-bg-color);
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--button-hover-bg-color);
}

/* Content Section */
.content {
    padding: 60px 20px;
    text-align: center;
}

.content h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer */
.footer-basic {
    background-color: var(--footer-bg-color);
    padding: 40px 0;
    color: white;
    text-align: center;
}

.footer-basic .social a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-basic .social a:hover {
    color: var(--button-bg-color);
}

.footer-basic .list-inline {
    margin: 20px 0;
    padding: 0;
}

.footer-basic .list-inline-item {
    display: inline;
    margin: 0 10px;
}

.footer-basic .list-inline-item a {
    color: white;
    text-decoration: none;
}

.footer-basic .list-inline-item a:hover {
    color: var(--button-bg-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2em;
    }

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

    .cta-button {
        font-size: 1em;
    }

    .menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .menu a {
        display: block;
        text-align: center;
    }
}
</pre></body></html>