* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cookie-modal {
    position: relative;
    background: #ebebf1;
    color: #2f2f35;
    max-width: 620px;
    width: 92%;
    padding: 24px 22px 28px;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    font-family: Arial, sans-serif;
    border: 1px solid #d0d0d8;
}

.cookie-modal h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.cookie-modal p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4f;
}

.cookie-link {
    color: #3b82f6;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-accept {
    background: #3c8af7;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-accept:hover {
    background: #3275d1;
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: none;
    color: #3c8af7;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-close:hover {
    text-decoration: underline;
}

.background {
    width: 100vw;
    height: 100vh;
    background-image: url("img/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile */
@media (max-width: 768px) {
    .background {
        background-image: url("img/background-mobile.png");
        background-size: cover;
        background-position: top;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .background {
        background-image: url("img/background-tablet.jpg");
        background-position: top;
    }
}
