/* Shipping Page CSS */
body {
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Adjusted .shipping-container styles */
.shipping-container {
    width: min(960px, calc(100% - 32px)); /* Decrease the width of the container */
    background-color: transparent; /* Ensure a white background for the shipping content */
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 0 5px #cccccc;
    margin: 108px auto 50px; /* Keep title alignment consistent across pages */
    text-align: center; /* Center the content inside the container */
}

.shipping-heading::before,
.shipping-heading::after {
    content: "";
    flex: 1 1 140px;
    max-width: 180px;
    min-width: 48px;
    height: 2px;
    background-color: red;
}

.shipping-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 1);
    font-size: 32px;
    line-height: 31px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 0 16px;
}

.shipping-content {
    text-align: center;
}

.shipping-subheading {
    margin: 24px 0 12px;
    font-size: 18px;
    color: #fff;
}

.shipping-content p + p {
    margin-top: 16px;
}

.shipping-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.shipping-content a:hover,
.shipping-content a:focus-visible {
    color: #ffb3a6;
}

.shipping-paragraph {
    display: block;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .shipping-container {
        margin: 32px auto 40px;
    }

    .shipping-heading {
        font-size: 28px;
        line-height: 1.2;
    }

    .shipping-heading::before,
    .shipping-heading::after {
        display: none;
    }
}
