.shipping-info-page {
    background-color: #f8f9fa;
    padding: 80px 0;
    min-height: 80vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.shipping-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}

.shipping-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.section-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-right: 15px;
    font-family: 'Times New Roman', serif;
}

.shipping-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.shipping-section p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
    text-align: justify;
}

.shipping-section ol,
.shipping-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.shipping-section li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.shipping-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shipping-info-page {
        padding: 40px 0;
    }

    .shipping-content {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .shipping-section h2 {
        font-size: 1.3rem;
    }
}