.nav-wrapper {
    background-color: var(--secondary);
    height: 90px;
}

.logo {
    width: 78px;
}

.policy-hero {
    padding: 150px 0 100px 0;
}

.nav-wrapper.scrolled {
    background: var(--secondary-opaque);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}

.container-large {
    max-width: 1100px;
}

.layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    gap: 60px;
    text-align: end;
    padding: 14px 40px 0 0;
}

.sidebar-heading {
    color: var(--secondary);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.2px;
}

.sidebar-heading-3 {
    position: relative;
    top: -55px;
}

/* Column Divider */
.column-divider {
    position: relative;
}

.column-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 10px;
    width: 2px;
    background: var(--gray-500);
    transform: translateX(-20px);
}

/* Content */
.content-area {
    padding: 14px 0 0 40px;
}

.content-area h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
}

.content-area p {
    font-size: 16px;
    color: var(--black);
    line-height: 1.45;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 40px;
}

/* ===================== */
/* MOBILE RESPONSIVE VIEW */
/* ===================== */
@media (max-width: 880px) {
    .page-title {
        margin-bottom: 40px;
    }

    .policy-hero {
        padding-bottom: 50px;
    }

    .layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .sidebar {
        display: none;
    }

    .column-divider::before {
        display: none;
    }

    .content-area h3 {
        position: relative;
    }

    /* .content-area::before {
        content: attr(data-heading);
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 10px;
    } */

    .content-area h3 {
        font-size: 20px;
    }

    .content-area {
        padding-left: 0;
        max-width: 100%;
    }

    .content-area p {
        max-width: 100%;
    }
}

/* Container that holds all rows */
.policy-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* separators handle the spacing */
}

/* Each row: left title + right content */
.policy-row {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);

    /* soft grey divider */
    /* align-items: center;
  align-items: flex-start;
 

}

.policy-row:last-child {
  border-bottom: none;
}

/* Left side: title */
    .policy-title {
        width: 260px;
        /* keeps left column a fixed width */
        flex-shrink: 0;
    }

    /* Reuse your existing heading styles if any, otherwise: */
    .policy-title.sidebar-heading {
        font-weight: 600;
        /* color: #2b2b2b; */
        color: var(--secondary);
        /* <--- GREEN */
        padding-top: 14px;
        font-family: "Fredoka", sans-serif !important;

    }

    /* Right side: content */
    .content-area {
        flex: 1;
    }

    .content-area p,
    .content-area ul,
    .content-area li {
        color: #333;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    /* Lists inside content */
    .content-area ul {
        padding-left: 24px;
        margin: 8px 0 16px;
    }

    .content-area li {
        margin-bottom: 6px;
    }

    /* Responsive: stack on mobile */
    @media (max-width: 768px) {
        .policy-row {
            flex-direction: column;
        }

        .policy-title {
            width: 100%;
        }
    }