#gdpr {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 5px;
    vertical-align: middle;
}

#gdpr:checked {
    background-color: #007BFF;
}

#gdpr:checked::after {
    content: '\2714';
    font-size: 14px;
    color: white;
    position: relative;
    left: 5px;
    top: -1px;

}

.categories .category label {
    font-weight: normal;
}

.categories .category {
    display: flex;
    align-items: center;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

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

header img {
    width: 150px;
}

header a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

h1 {
    text-align: center;
    font-size: 24px;
}

.description {
    text-align: center;
    margin: 20px 0;
}

.timer {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #FF0000;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;
    height: 50px;
}

.half-width {
    flex: 1 1 calc(40% - 7.5px);
    gap: 15px;
}

.full-width {
    flex: 1 1 100%;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.category {
    flex: 1 1 calc(50% - 15px);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.category label {
    margin-left: 5px;
}

.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.submit-container {
    display: flex;
    justify-content: center;
}

.submit-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #0056b3;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

footer {
    text-align: center;
    margin-top: 20px;
}

footer a {
    text-decoration: none;
    color: #007BFF;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 10px 0 0;
    font-size: 12px;
    color: #666;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    max-width: 500px;
    margin: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup h2 {
    margin-top: 0;
}

.popup button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.popup button:hover {
    background-color: #0056b3;
}
