.site-footer {
    position: relative;
    color: #fff;
    padding: 50px 20px 50px;
    text-align: center;
    overflow: hidden;
        padding-bottom: 5px;
}
.site-footer:after{
  content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);

}
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background:  center/cover no-repeat;
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
        z-index: 17;
        position: relative;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
}
.footer-info a{
color: #fff;
text-decoration: none;
}
.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
    width: fit-content;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
}
.footer-menu ul{
  width: fit-content;
    text-align: center;
    margin: 0 auto;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid #ffffff;
  font-size: 14px;
  z-index: 17;
  position: relative;
}
.footer-bottom p {
    margin: 0;
    color: #fff;
  }
.footer-logo {
    text-align: center;
}
.footer-logo img {
    width: auto;
    height: 150px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 15px 20px;
    display: none; /* domyślnie ukryty, pokażemy JS-em */
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.cookie-banner p {
    margin: 0;
    flex: 1 1 70%;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-banner button {
    flex: 0 0 auto;
    padding: 10px 20px;
    font-size: 14px;
    background: #f0a763;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}

.cookie-banner button:hover {
    background: #cf3c3c;
}



.cta-bar{
    width:100%;
    background:#ff914d;
    padding:22px 20px;
}

.cta-inner{
  max-width: 1125px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.cta-text{
    color:#fff;
    font-size:18px;
    display:flex;
    flex-direction:column;
}

.cta-text strong{
    font-size:20px;
}

.cta-buttons{
    display:flex;
    gap:12px;
}

.cta-btn{
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:0.2s;
}

.cta-call{
    background:#fff;
    color:#ff914d;
}

.cta-call:hover{
    opacity:1;
    transform: scale(1.03);
}

.cta-signup{
    background:#000;
    color:#fff;

}

.cta-signup:hover{
    opacity:1;
transform: scale(1.03);
}

@media (max-width:768px){

    .cta-inner{
        flex-direction:column;
        text-align:center;
    }

    .cta-buttons{
        width:100%;
        justify-content:center;
    }

}
