/* Policy Header */
.policy-header {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/policy/policy-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 5rem 1.5rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    margin-bottom: 1rem;
}

.policy-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.policy-header p.lead {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0.5rem auto 1.5rem;
}

.custom-breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    margin: 0 auto;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #e6e6e6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #cccccc;
    font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #e6e6e6;
    content: "/";
}

/* Zig-Zag Sections */
.policy-zig-zag-section {
    margin-bottom: 1rem;
    padding: 1rem 0;
}

.policy-zig-zag-heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
}

.policy-zig-zag-heading h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #0057b7;
    display: flex;
    align-items: center;
    margin: 0;
}

.policy-zig-zag-heading .fa-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #0057b7;
}

.policy-zig-zag-image-col {
    display: flex;
    justify-content: center;
}

.policy-zig-zag-image {
    width: 100%;
    max-height: 500px; /* Updated as provided */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-zig-zag-image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.policy-zig-zag-content {
    padding: 1.5rem;
}

.policy-zig-zag-section:nth-child(odd) .row {
    flex-direction: row-reverse;
}

.policy-zig-zag-section:nth-child(even) .row {
    flex-direction: row;
}

.content-wrapper {
    max-width: 90%;
    margin: 0 auto;
}

/* Content Styling */
.policy-section h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-section h3::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0057b7;
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.policy-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.policy-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 0.9rem;
}

.highlight-box {
    background: #f0f6ff;
    border-left: 5px solid #0057b7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-box strong {
    color: #0057b7;
    font-weight: 700;
}

.alert-warning {
    background: #fff8e6;
    border-left: 5px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    line-height: 1.6;
}

.alert-warning strong {
    color: #856404;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .policy-zig-zag-section .row {
        flex-direction: column !important;
    }

    .policy-zig-zag-image-col {
        order: -1;
        margin-bottom: 2rem;
    }

    .policy-zig-zag-content {
        padding: 0;
    }

    .policy-zig-zag-heading {
        justify-content: center;
        text-align: center;
    }

    .policy-zig-zag-heading .fa-icon {
        font-size: 1.4rem;
    }

    .policy-header {
        padding: 3rem 1rem;
        min-height: 300px;
    }

    .policy-header h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .policy-zig-zag-image {
        max-height: 350px; /* Adjusted for smaller screens */
    }
}

@media (max-width: 575.98px) {
    .policy-header h1 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .policy-zig-zag-heading h2 {
        font-size: 1.75rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-list li {
        font-size: 0.95rem;
    }

    .content-wrapper {
        max-width: 100%;
    }
}