/* --- Shipping Policy Page Styles --- */

/* ਹੀਰੋ ਸੈਕਸ਼ਨ (Hero Section) */
.shipping-hero {
    background-color: #800020;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.shipping-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.shipping-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ਕੰਟੈਂਟ ਰੈਪਰ (Content Wrapper) */
.shipping-content-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ਕੰਟੈਂਟ ਕਾਰਡ (Content Card) */
.content-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ਹੈਡਿੰਗਸ ਸਟਾਈਲ (Headings Style) - ਉੱਪਰ ਹੈਡਿੰਗ ਅਤੇ ਹੇਠਾਂ ਜਾਣਕਾਰੀ */
.content-card h2 {
    font-size: 1.3rem;
    color: #741549; /* ਮੁੱਖ ਰੰਗ */
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.content-card h2:first-of-type {
    margin-top: 0;
}

/* ਪੈਰਾਗ੍ਰਾਫ ਸਟਾਈਲ (Paragraph Style) */
.content-card p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
    text-align: justify;
}

/* ਮੋਬਾਈਲ ਅਤੇ ਛੋਟੀ ਸਕ੍ਰੀਨ ਲਈ ਰਿਸਪਾਂਸਿਵ ਸੈਟਿੰਗਜ਼ */
@media (max-width: 768px) {
    .shipping-hero {
        padding: 40px 15px;
    }

    .shipping-hero h1 {
        font-size: 1.8rem;
    }

    .shipping-hero p {
        font-size: 1rem;
    }

    .content-card {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .content-card h2 {
        font-size: 1.15rem;
        margin-top: 25px;
    }

    .content-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}