.page-banner {
    background: linear-gradient(to bottom, #f8fbfd, #d1e6ff);
    padding: 150px 0 120px;
    text-align: center;
}
.page-banner h1 {
    font-size: 46px;
    font-weight: 700;
    color: #000;
}
.page-banner p {
    color: #000;
    opacity: .85;
}

/* Content Formatting */
.policy-container {
    padding: 60px 0;
}
.policy-container h1,
.policy-container h2,
.policy-container h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}
.policy-container p,
.policy-container li {
    font-size: 16px;
    line-height: 28px;
}
/* Hamburger button */
#mobileMenuOpen {
cursor: pointer;
z-index: 9999;
position: absolute;
right: 15px;
top: 25px;
width: 30px;
height: 25px;
}
#mobileMenuOpen span {
display: block;
width: 100%;
height: 3px;
margin-bottom: 5px;
background-color: #0079ff !important;
border-radius: 3px;
}

/* Mobile menu panel (slide right) */
.mobile-menu-panel {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: #ffffff;
box-shadow: -5px 0 15px rgba(0,0,0,0.1);
z-index: 100000;
transition: right 0.3s ease-in-out;
padding: 20px;
visibility: hidden;
}
.mobile-menu-panel.open {
right: 0;
visibility: visible;
}

.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}

.close-btn {
font-size: 35px;
background: none;
border: none;
cursor: pointer;
line-height: 0.7;
}

@media (max-width: 768px) {
#mobileMenuOpen { right: 12px !important; top: 22px !important; transform: scale(0.9); }
#mobileMenuOpen span { background-color: #0079ff !important; }

.header { padding: 8px 0 !important; }
.header__logo img { width: 120px !important; height: auto !important; }
}
/* Center footer items on mobile */
@media (max-width: 767px) {

.footer-brand, 
.footer-links, 
.footer-contact, 
.footer-bottom {
    text-align: center !important;
}

.footer-brand .social-links {
    justify-content: center !important;
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

/* THIS PART CENTERS THE LOGO */
.footer-logo {
    margin: 0 auto 15px auto;
    display: block;
}
}
