.shipping-policy-container {
    background: #fcfcfc; /* lighter than f9f9f9 to contrast footer */
    padding: 60px 0;
    font-family: 'Segoe UI', sans-serif;
}

.shipping-policy-container .container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
    color: #333;
}

.policy-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #246fe7;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.shipping-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.shipping-box h2 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

.shipping-box p,
.shipping-box li {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.shipping-box ul {
    padding-left: 20px;
    margin-top: 10px;
}

.shipping-box a {
    color: #246fe7;
    text-decoration: none;
}

.shipping-box a:hover {
    text-decoration: underline;
}

.disclaimer {
    text-align: center;
    font-size: 13px;
    margin-top: 40px;
    color: #777;
}
