.footer {
    width: 100%;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 3px solid #ddd;
    background: var(--orange);
}

.footer-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-base);
    font-weight: 300;
    font-size: 18px;
    color: var(--white);

    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    transform: scale(1.05);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: var(--font-base);
}

.modal-content {
    max-height: 80vh;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    min-width: 20%;
    max-width: 50%;
    overflow-y: auto;
}

.modal-close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

.modal-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-dark);
}

.modal-text h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
}

.modal-text p {
  margin-bottom: 12px;
}

.modal-text ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.modal-text li {
  margin-bottom: 6px;
}

.cookie-buttons {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#modal-accept {
    width: 40%;
}

#modal-reject {
    width: 40%;
}
