/* Landing Footer Styles */
.pb-landing-footer-main {
    background-color: #000000;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: 1rem;
}

.pb-landing-footer-main .container-main {
    max-width: 955px;
    margin: 0 auto;
}

.pb-footer-logo {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    padding-bottom: 35px;
}

.pb-footer-copyright {
    text-align: center;
    padding-bottom: 35px;
}

.pb-footer-copyright p {
    font-family: "OpenSans-Light", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #9da8ae;
    font-weight: 300;
    padding-bottom: 10px;
}

.pb-footer-copyright p:last-child {
    padding-bottom: 0;
}

.pb-footer-copyright p a {
    color: #9da8ae;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pb-footer-copyright p a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.pb-footer-copyright p span {
    color: #9da8ae;
    margin: 0 5px;
}

.pb-footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 45px;
}

.iconpb {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.iconpb:last-child {
    margin-right: 0;
}

.iconpb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb-footer-content p {
    font-family: "OpenSans-Light", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #9da8ae;
    font-weight: 300;
    text-align: center;
    padding-bottom: 20px;
}

.pb-footer-content p:last-child {
    padding-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pb-landing-footer-main {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .pb-footer-logo {
        padding-bottom: 25px;
    }
    
    .pb-footer-copyright {
        padding-bottom: 25px;
    }
    
    .pb-footer-copyright p {
        font-size: 13px;
        line-height: 20px;
    }
    
    .pb-footer-icons {
        padding-bottom: 35px;
    }
    
    .iconpb {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .pb-footer-content p {
        font-size: 13px;
        line-height: 20px;
        padding-bottom: 15px;
    }
}

