.newsletter-updated {
    background-color: #e6f2ff; /* Světle modré pozadí */
    padding: 20px 0;
    text-align: center;
    margin: 20px auto;
    width: 100%;
    border-radius: 5px;
}
.newsletter-updated h3 {
    font-size: 18px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}
.newsletter-updated p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}
.newsletter-updated form {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.newsletter-updated input[type="email"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.newsletter-updated input[type="email"]::placeholder {
    color: transparent;
}
.newsletter-updated button {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}
.newsletter-updated button:hover {
    background-color: #002244;
}
