body {
    padding-top: 0;
}
.page-hero-section {
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(6rem, 10vw, 8rem) 0;
    background: linear-gradient(125deg, var(--ibc-blue), var(--ibc-green), var(--ibc-blue));
    background-size: 400% 400%;
    color: var(--ibc-white);
    animation: animatedGradient 18s ease infinite;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: padding 0.4s ease;
    margin-top: 0;
}
.page-hero-section .container {
    position: relative;
    z-index: 2;
}
.page-hero-section h1 {
    color: var(--ibc-white);
    font-size: clamp(3rem, 7vw, 4.5rem);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    font-weight: 800;
    letter-spacing: -0.05em;
}
.page-hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    max-width: 800px;
    margin: 1rem auto 0 auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.privacy-section {
    padding: 5rem 0 6rem 0;
    background-color: var(--ibc-light-grey);
}
.privacy-content {
    background-color: var(--ibc-white);
    padding: 3rem 3.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-top: 5px solid;
    border-image: linear-gradient(to right, var(--ibc-green), var(--ibc-blue)) 1;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.privacy-content.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--animation-delay, 0s);
}
.privacy-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.privacy-content h2:not(.h2-white), .privacy-content h3:not(.h2-white) {
    font-weight: 700;
    color: var(--ibc-dark);
    display: flex;
    align-items: center;
}
.privacy-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    margin-top: 3.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(109, 151, 68, 0.05), rgba(0, 51, 102, 0.05));
    border-radius: 10px;
    border-left: 4px solid var(--ibc-green);
}
.privacy-content h2:first-of-type {
    margin-top: 0;
}
.privacy-content h3 {
    font-size: 1.6rem;
    margin-top: 3.5rem;
    color: var(--ibc-blue);
    padding-top: 2rem;
    position: relative;
}
.privacy-content h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 3px;
    background: linear-gradient(to right, var(--ibc-green), var(--ibc-blue));
    border-radius: 2px;
}
.privacy-content p, .privacy-content ul, .privacy-content li {
    color: var(--ibc-text-primary);
    line-height: var(--base-line-height, 1.8);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.privacy-content strong {
    color: var(--ibc-dark);
    font-weight: 600;
}
.privacy-content ul {
    padding-left: 1.5rem;
    list-style: none;
}
.privacy-content ul li {
    position: relative;
    padding-left: 1.75rem;
}
.privacy-content ul li::before {
    content: '\f101';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--ibc-green);
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.9rem;
}
.privacy-content a {
    color: var(--ibc-green);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}
.privacy-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--ibc-dark);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.privacy-content a:hover {
    color: var(--ibc-dark);
}
.privacy-content a:hover::after {
    width: 100%;
}
.privacy-content h2 .icon,
.privacy-content h3 .icon {
    margin-right: 0.75rem;
    color: var(--ibc-green);
}
.privacy-content > p:first-of-type {
    font-style: italic;
    color: var(--ibc-text-secondary, #6c757d);
    padding: 1rem 1.5rem;
    background-color: rgba(109, 151, 68, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--ibc-green);
}
.cmplz-document h2 {
    font-size: 2rem;
}
.privacy-content address,
.privacy-content address p {
    padding: 1.25rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--ibc-blue);
    color: var(--ibc-text-primary);
}
.privacy-content address strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--ibc-dark);
}
@media (max-width: 768px) {
    .page-hero-section {
        padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 8vw, 7rem) 0;
    }
     .page-hero-section h1 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
     .page-hero-section .lead {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
    }
    .privacy-content {
        padding: 2rem 1.5rem;
    }
    .privacy-content h2 {
        font-size: 1.8rem;
        padding: 1.25rem;
        margin-top: 2.5rem;
    }
    .privacy-content h3 {
        font-size: 1.4rem;
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
     .privacy-content p, .privacy-content ul, .privacy-content li {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
     .privacy-content ul li {
        padding-left: 1.5rem;
    }
    .privacy-content > p:first-of-type {
        padding: 0.875rem 1.25rem;
    }
    .privacy-content address,
    .privacy-content address p {
        padding: 1rem 1.25rem;
    }
}
