h2 {
    font-size: 24px;
    color: #111;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form input:focus {
    border-color: #4CAF50;
    outline: none;
}

.form button {
    background-color: #111;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}



.form button:hover {
    background-color: #333;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup-content {
    flex: 1;
    margin-right: 20px;
}

.cookie-popup h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-popup p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.accept-btn {
    background-color: #a2e085;
    color: #111;
}

.accept-btn:hover {
    background-color: #8bc56e;
}

.decline-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.decline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-popup {
        flex-direction: column;
        padding: 15px;
    }

    .cookie-popup-content {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}