*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #3498db;
}

.menu-toggle {
    display: none;
}

.logo {
    position: absolute;
    left: 20px;
    top: 80px;
    width: 200px;
    height: auto;
    z-index: 1001;
    filter: grayscale(0%);
}


.parallax-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2.5em;
    text-align: center;
    filter: grayscale(100%);
}

.content-section {
    padding: 80px 20px;
    background-color: #f4f4f4;
    text-align: center;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    width: 80%;
    margin: auto;
    padding: 0 20px;
}
p {
    font-size: 1.1em;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h4 {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1em;
}

.contact-info p a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: #3498db;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5em;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: fixed;
        height: 40vh;
        max-height: 300px;
    }
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        color: white;
        font-size: 1.5em;
        cursor: pointer;
        z-index: 1001;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        padding-top: 50px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        align-items: center;
        justify-content: center;
    }
    .nav-links li {
        margin: 20px 0;
    }
    .nav-links.active {
        display: flex;
    }
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 2000;
}

.cookie-banner p {
    margin-bottom: 15px;
}

.cookie-banner a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

#accept-cookies {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
}

.content-section h3 + p {
    margin-top: 1em;
}