.policy-container {
        font-family: 'Livvic', sans-serif;
        line-height: 1.7;
        color: #333;
        max-width: 900px;
        margin: 40px auto;
        padding: 40px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        margin-top: 270px;
    }

    .policy-container h1 {
        color: #E31E24;
        font-weight: 900;
        font-size: clamp(24px, 5vw, 36px);
        text-transform: uppercase;
        border-bottom: 5px solid #F5E027;
        display: inline-block;
        margin-bottom: 30px;
    }

    .policy-container h2 {
        font-size: 22px;
        color: #111;
        font-weight: 700;
        margin-top: 35px;
        display: flex;
        align-items: center;
    }

    .policy-container h2 i {
        margin-right: 12px;
        color: #E31E24;
    }

    .shipping-info-box {
        background-color: #fff9e6;
        border-left: 5px solid #F5E027;
        padding: 20px;
        margin: 20px 0;
        border-radius: 4px;
        font-size: 16px;
    }

    .shipping-info-box strong {
        color: #E31E24;
    }

    .policy-list {
        list-style-type: none;
        padding: 0;
    }

    .policy-list li {
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
    }

    .policy-list li::before {
        content: "\f0d1"; /* FontAwesome Truck Icon */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #E31E24;
    }

    .contact-bar {
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #eee;
        text-align: center;
    }

    @media (max-width: 768px) {
        .policy-container {
            padding: 25px;
            margin: 20px;
            margin-top: 210px;
        }
    }