/* Main Policy Section */
.policy__content {
    background: #f4f4f4;
    padding: 40px;
    border-radius: 20px;
}

.policy__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.policy__intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.policy__content p {
    margin-bottom: 16px;
}

.policy__content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    border-left: 4px solid #f29f05;
    padding-left: 10px;
}

.policy__content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy__content ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Sidebar Styling */
.policy__sidebar {
    background-image: url("/assets/images/resources/sidebar-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 70px;
}

.policy__sidebar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    z-index: 0;
}

.policy__sidebar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--crank-white);
    z-index: 1;
    position: relative;
}

.policy__sidebar p {
    font-size: 15px;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
    color: rgba(var(--crank-white-rgb), 0.8);
}

.policy__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    z-index: 1;
    position: relative;
    color: rgba(var(--crank-white-rgb), 0.8);
}

.policy__highlight .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--crank-base);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.policy__highlight .icon:last-child {
    margin-bottom: 0;
}

.policy__highlight span {
    font-size: 16px;
    z-index: 1;
    position: relative;
    color: rgba(var(--crank-white-rgb), 0.8);
}

@media (max-width: 768px) {
    .policy .g-5 {
        --bs-gutter-x: 0;
    }

    .policy__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .policy__content h4 {
        font-size: 18px;
    }
}
