.feedback-section, .zform {
    display: none;
}

#modal-overlay {
    display: none;
}

.zform, .feedback-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.btn-submit, .feedback-submit, button[type="submit"] {
    cursor: pointer !important;
}

.hero {
    padding: 180px 0px 240px 0px;
}
.hero p {
    font-size: 26px;
    max-width: 900px;
}
.hero h1 {
    font-size: 56px;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0;
    }
    .hero p {
        font-size: 20px;
    }
    .hero h1 {
        font-size: 32px;
    }
}

.feedback-section {
    background-image: none;
}

input[type="checkbox"] {
    width: unset !important;
    margin: unset;
    padding: unset;
    margin-top: 4px;
}

.zform .txt input,
.zform .txt textarea {
    border: 1px solid #e0e0e0;
}

.zform .txt input:focus,
.zform .txt textarea:focus {
    border-color: #333;
    outline: none;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}
.cookie-link {
    color: var(--accent);
    text-decoration: none;
}
.cookie-link:hover {
    text-decoration: underline;
}
.cookie-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s;
}
.cookie-button:hover {
    background: #1e40af;
}
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-button {
        width: 100%;
        max-width: 300px;
    }
}