.form-status {
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 5px;
    border-left: 4px solid #c62828;
}

.thank-you-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    border-left: 4px solid #2e7d32;
}

.thank-you-message h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.anti-spam {
    display: flex;
    align-items: center;
}

.anti-spam input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 20px 10px 0;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-secondary {
    background-color: #7f8c8d;
}

.btn-secondary:hover {
    background-color: #95a5a6;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
        justify-content: center;
    }
}
