.essential-packing-wrapper {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 50px;
    overflow-x: hidden;
}

.essential-packing-wrapper .heading {
    font-size: 2rem; /* Reduced heading size */
    text-align: center;
    margin-bottom: 1.5em;
    color: #007bff;
    font-weight: 700;
    border-bottom: 4px solid #007bff;
    padding-bottom: 0.75em;
}

.essential-packing-wrapper .intro {
    font-size: 1.125rem;
    margin-bottom: 2em;
    color: #555;
    text-align: justify;
    line-height: 1.8;
}

.essential-packing-wrapper .section {
    margin-bottom: 2em;
}

.essential-packing-wrapper .section-heading {
    font-size: 1.5rem; /* Reduced section heading size */
    color: #007bff;
    margin-bottom: 1em;
    position: relative;
    font-weight: 600;
    padding-left: 1.5em;
}

.essential-packing-wrapper .section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 100%;
    background-color: #007bff;
    border-radius: 2px;
}

.essential-packing-wrapper .section-description {
    font-size: 1rem;
    margin-bottom: 1.5em;
    color: #666;
    line-height: 1.6;
}

.essential-packing-wrapper .packing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight:400;
}

.essential-packing-wrapper p {
    font-weight:400;
}
.essential-packing-wrapper .packing-list li {
    display: flex;
    align-items: center;
    padding: 1em 1.5em;
    margin-bottom: 1.5em;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    position: relative;
    padding-left: 3em; /* Space between bullet and text */
}

.essential-packing-wrapper .packing-list li:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.essential-packing-wrapper .packing-list li strong {
    color: #007bff;
    flex-shrink: 0;
    margin-right: 1em;
    font-weight: 600;
}

/* Custom Bullet - Square Shape */
.essential-packing-wrapper .packing-list li::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #007bff;
    border-radius: 2px; /* Square shape with rounded corners */
    position: absolute;
    left: 1em; /* Positioning the bullet */
}

/* Link style */
.essential-packing-wrapper a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.3s ease;
}

.essential-packing-wrapper a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .essential-packing-wrapper {
        padding: 30px;
    }

    .essential-packing-wrapper .heading {
        font-size: 1.75rem; /* Further reduced on medium screens */
    }

    .essential-packing-wrapper .section-heading {
        font-size: 1.25rem; /* Reduced section heading size */
    }

    .essential-packing-wrapper .packing-list li {
        font-size: 0.95rem;
        padding: 0.75em 1em;
        margin-bottom: 1em; /* Reduce bottom margin */
    }

    .essential-packing-wrapper .section-description {
        font-size: 1rem;
    }

    /* Reduce padding-left and bottom margin on smaller screens */
    .essential-packing-wrapper .packing-list li {
        padding-left: 2.5em;
        margin-bottom: 1em;
    }
}

@media (max-width: 480px) {
    .essential-packing-wrapper {
        padding: 20px;
    }

    .essential-packing-wrapper .heading {
        font-size: 1.5rem; /* Reduced further on small screens */
    }

    .essential-packing-wrapper .packing-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75em;
        margin-bottom: 0.75em; /* Even smaller bottom margin */
    }

    .essential-packing-wrapper .packing-list li strong {
        margin-bottom: 0.5em;
    }

    .essential-packing-wrapper .packing-list li {
        margin-bottom: 0.75em;
    }

    /* Ensure space between bullet and text on small screens */
    .essential-packing-wrapper .packing-list li {
        padding-left: 3em;
    }
}
