body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    color: #f5f5f5;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-color: #222;
}
.overlay {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}
.logo {
    max-width: 200px;
    margin-bottom: 20px;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4CAF50;
}
p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.contact {
    margin-top: 20px;
    font-size: 1rem;
}
.contact a {
    color: #4CAF50;
    text-decoration: none;
}
.contact a:hover {
    text-decoration: underline;
}
.language-switch {
    margin-top: 20px;
    font-size: 0.9rem;
}
.language-switch a {
    color: #aaa;
    margin: 0 5px;
    text-decoration: none;
}
.language-switch a:hover {
    text-decoration: underline;
}
.subscribe-form {
    margin-top: 20px;
}
.subscribe-form input[type="email"] {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 1rem;
}
.subscribe-form button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}
.subscribe-form button:hover {
    background-color: #45a049;
}
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .overlay {
        padding: 20px;
    }
}

.subscribe-form input[type="text"],
.subscribe-form input[type="email"],
.subscribe-form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.subscribe-form textarea {
    height: 100px;
    resize: vertical;
}

.gdpr-box {
    text-align: left;
    font-size: 0.9rem;
    margin: 15px 0;
}

.gdpr-box label {
    display: block;
    line-height: 1.4;
}
